cryptpad/www/common/common-constants.js

21 lines
754 B
JavaScript
Raw Normal View History

define(['/customize/application_config.js'], function (AppConfig) {
2017-11-21 15:47:19 +00:00
return {
// localStorage
userHashKey: 'User_hash',
userNameKey: 'User_name',
blockHashKey: 'Block_hash',
2017-11-21 15:47:19 +00:00
fileHashKey: 'FS_hash',
// Store
displayNameKey: 'cryptpad.username',
oldStorageKey: 'CryptPad_RECENTPADS',
storageKey: 'filesData',
2017-11-30 09:33:09 +00:00
tokenKey: 'loginToken',
2018-06-22 08:37:54 +00:00
displayPadCreationScreen: 'displayPadCreationScreen',
deprecatedKey: 'deprecated',
2020-12-14 15:01:01 +00:00
MAX_TEAMS_SLOTS: AppConfig.maxTeamsSlots || 5,
MAX_TEAMS_OWNED: AppConfig.maxOwnedTeams || 5,
// Apps
2021-04-02 11:44:28 +00:00
criticalApps: ['profile', 'settings', 'debug', 'admin', 'support', 'notifications', 'calendar']
2017-11-21 15:47:19 +00:00
};
});