aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormarzavec <admin@marzavec.com>2020-03-06 22:12:48 +0100
committermarzavec <admin@marzavec.com>2020-03-06 22:12:48 +0100
commit0de1ece3e4da19f7aacb49ea1c9d62ab1bc0f930 (patch)
tree1e99404d77573724ad0749ec47691a5694341cdd
parentMerge pull request #90 from MinusGix/verifyNicknameMove (diff)
downloadhackchat-0de1ece3e4da19f7aacb49ea1c9d62ab1bc0f930.tar.gz
hackchat-0de1ece3e4da19f7aacb49ea1c9d62ab1bc0f930.zip
Comments fix
-rw-r--r--server/src/commands/core/changenick.js2
-rw-r--r--server/src/commands/core/invite.js2
-rw-r--r--server/src/commands/core/whisper.js2
-rw-r--r--server/src/commands/utility/UAC/_info.js12
4 files changed, 12 insertions, 6 deletions
diff --git a/server/src/commands/core/changenick.js b/server/src/commands/core/changenick.js
index 6e9e59f..9cfa929 100644
--- a/server/src/commands/core/changenick.js
+++ b/server/src/commands/core/changenick.js
@@ -2,7 +2,7 @@
Description: Allows calling client to change their current nickname
*/
-import * as UAC from "../utility/UAC/_info";
+import * as UAC from '../utility/UAC/_info';
// module main
export async function run(core, server, socket, data) {
diff --git a/server/src/commands/core/invite.js b/server/src/commands/core/invite.js
index 6d7c2af..b98115b 100644
--- a/server/src/commands/core/invite.js
+++ b/server/src/commands/core/invite.js
@@ -2,7 +2,7 @@
Description: Generates a semi-unique channel name then broadcasts it to each client
*/
-import * as UAC from "../utility/UAC/_info";
+import * as UAC from '../utility/UAC/_info';
// module main
export async function run(core, server, socket, data) {
diff --git a/server/src/commands/core/whisper.js b/server/src/commands/core/whisper.js
index e574e1f..0c2e2d3 100644
--- a/server/src/commands/core/whisper.js
+++ b/server/src/commands/core/whisper.js
@@ -2,7 +2,7 @@
Description: Display text on targets screen that only they can see
*/
-import * as UAC from "../utility/UAC/_info";
+import * as UAC from '../utility/UAC/_info';
// module support functions
diff --git a/server/src/commands/utility/UAC/_info.js b/server/src/commands/utility/UAC/_info.js
index d34a384..c5010a6 100644
--- a/server/src/commands/utility/UAC/_info.js
+++ b/server/src/commands/utility/UAC/_info.js
@@ -33,6 +33,7 @@ export const levels = {
/**
* Returns true if target level is equal or greater than the global admin level
* @public
+ * @param {number} level Level to verify
* @return {boolean}
*/
export function isAdmin(level) {
@@ -42,6 +43,7 @@ export function isAdmin(level) {
/**
* Returns true if target level is equal or greater than the global moderator level
* @public
+ * @param {number} level Level to verify
* @return {boolean}
*/
export function isModerator(level) {
@@ -51,6 +53,7 @@ export function isModerator(level) {
/**
* Returns true if target level is equal or greater than the channel owner level
* @public
+ * @param {number} level Level to verify
* @return {boolean}
*/
export function isChannelOwner(level) {
@@ -60,6 +63,7 @@ export function isChannelOwner(level) {
/**
* Returns true if target level is equal or greater than the channel moderator level
* @public
+ * @param {number} level Level to verify
* @return {boolean}
*/
export function isChannelModerator(level) {
@@ -69,6 +73,7 @@ export function isChannelModerator(level) {
/**
* Returns true if target level is equal or greater than the channel trust level
* @public
+ * @param {number} level Level to verify
* @return {boolean}
*/
export function isChannelTrusted(level) {
@@ -78,6 +83,7 @@ export function isChannelTrusted(level) {
/**
* Returns true if target level is equal or greater than a trusted user
* @public
+ * @param {number} level Level to verify
* @return {boolean}
*/
export function isTrustedUser(level) {
@@ -87,9 +93,9 @@ export function isTrustedUser(level) {
/**
* Returns true if the nickname is valid
* @public
- * @param {String} nick
+ * @param {string} nick Nickname to verify
* @return {boolean}
*/
-export function verifyNickname (nick) {
+export function verifyNickname(nick) {
return /^[a-zA-Z0-9_]{1,24}$/.test(nick);
-} \ No newline at end of file
+}