You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
742 B
JavaScript
21 lines
742 B
JavaScript
define(['/customize/application_config.js'], function (AppConfig) {
|
|
return {
|
|
// localStorage
|
|
userHashKey: 'User_hash',
|
|
userNameKey: 'User_name',
|
|
blockHashKey: 'Block_hash',
|
|
fileHashKey: 'FS_hash',
|
|
// Store
|
|
displayNameKey: 'cryptpad.username',
|
|
oldStorageKey: 'CryptPad_RECENTPADS',
|
|
storageKey: 'filesData',
|
|
tokenKey: 'loginToken',
|
|
displayPadCreationScreen: 'displayPadCreationScreen',
|
|
deprecatedKey: 'deprecated',
|
|
MAX_TEAMS_SLOTS: AppConfig.maxTeamsSlots || 3,
|
|
MAX_TEAMS_OWNED: AppConfig.maxOwnedTeams || 1,
|
|
// Apps
|
|
criticalApps: ['profile', 'settings', 'debug', 'admin', 'support', 'notifications']
|
|
};
|
|
});
|