1
0
mirror of https://github.com/hack-chat/main.git synced 2024-03-22 13:20:33 +08:00

Comments fix

This commit is contained in:
marzavec 2020-03-06 15:12:48 -06:00
parent 05436fa4dc
commit 0de1ece3e4
4 changed files with 12 additions and 6 deletions

View File

@ -2,7 +2,7 @@
Description: Allows calling client to change their current nickname 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 // module main
export async function run(core, server, socket, data) { export async function run(core, server, socket, data) {

View File

@ -2,7 +2,7 @@
Description: Generates a semi-unique channel name then broadcasts it to each client 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 // module main
export async function run(core, server, socket, data) { export async function run(core, server, socket, data) {

View File

@ -2,7 +2,7 @@
Description: Display text on targets screen that only they can see 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 // module support functions

View File

@ -33,6 +33,7 @@ export const levels = {
/** /**
* Returns true if target level is equal or greater than the global admin level * Returns true if target level is equal or greater than the global admin level
* @public * @public
* @param {number} level Level to verify
* @return {boolean} * @return {boolean}
*/ */
export function isAdmin(level) { 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 * Returns true if target level is equal or greater than the global moderator level
* @public * @public
* @param {number} level Level to verify
* @return {boolean} * @return {boolean}
*/ */
export function isModerator(level) { 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 * Returns true if target level is equal or greater than the channel owner level
* @public * @public
* @param {number} level Level to verify
* @return {boolean} * @return {boolean}
*/ */
export function isChannelOwner(level) { 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 * Returns true if target level is equal or greater than the channel moderator level
* @public * @public
* @param {number} level Level to verify
* @return {boolean} * @return {boolean}
*/ */
export function isChannelModerator(level) { 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 * Returns true if target level is equal or greater than the channel trust level
* @public * @public
* @param {number} level Level to verify
* @return {boolean} * @return {boolean}
*/ */
export function isChannelTrusted(level) { 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 * Returns true if target level is equal or greater than a trusted user
* @public * @public
* @param {number} level Level to verify
* @return {boolean} * @return {boolean}
*/ */
export function isTrustedUser(level) { export function isTrustedUser(level) {
@ -87,9 +93,9 @@ export function isTrustedUser(level) {
/** /**
* Returns true if the nickname is valid * Returns true if the nickname is valid
* @public * @public
* @param {String} nick * @param {string} nick Nickname to verify
* @return {boolean} * @return {boolean}
*/ */
export function verifyNickname (nick) { export function verifyNickname(nick) {
return /^[a-zA-Z0-9_]{1,24}$/.test(nick); return /^[a-zA-Z0-9_]{1,24}$/.test(nick);
} }