mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-16 14:17:22 +01:00
22 lines
410 B
JavaScript
22 lines
410 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.
|
|
const bannedWords = [
|
|
'TESTPLACEHOLDERSWEARWORDHERE',
|
|
'TESTPLACEHOLDERSWEARWORDHERE1',
|
|
|
|
|
|
|
|
|
|
'support',
|
|
'habitica',
|
|
'habitrpg',
|
|
'admin',
|
|
'administrator',
|
|
'moderator',
|
|
'gryphon',
|
|
];
|
|
|
|
export default bannedWords;
|