mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-07-29 06:07:32 +00:00
21 lines
407 B
JavaScript
21 lines
407 B
JavaScript
|
|
/* eslint-disable no-multiple-empty-lines */
|
||
|
|
|
||
|
|
// This file contains usernames that we do not want users to use, because they give the account more legitimacy and may deceive users.
|
||
|
|
let bannedWords = [
|
||
|
|
'TESTPLACEHOLDERSWEARWORDHERE',
|
||
|
|
'TESTPLACEHOLDERSWEARWORDHERE1',
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
'support',
|
||
|
|
'habitica',
|
||
|
|
'habitrpg',
|
||
|
|
'admin',
|
||
|
|
'administrator',
|
||
|
|
'moderator',
|
||
|
|
'gryphon',
|
||
|
|
];
|
||
|
|
|
||
|
|
module.exports = bannedWords;
|