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.
25 lines
773 B
JavaScript
25 lines
773 B
JavaScript
define(function () {
|
|
return {
|
|
// localStorage
|
|
userHashKey: 'User_hash',
|
|
userNameKey: 'User_name',
|
|
blockHashKey: 'Block_hash',
|
|
fileHashKey: 'FS_hash',
|
|
// sessionStorage
|
|
newPadPathKey: "newPadPath",
|
|
newPadTeamKey: "newPadTeam",
|
|
newPadFileData: "newPadFileData",
|
|
// Store
|
|
displayNameKey: 'cryptpad.username',
|
|
oldStorageKey: 'CryptPad_RECENTPADS',
|
|
storageKey: 'filesData',
|
|
tokenKey: 'loginToken',
|
|
displayPadCreationScreen: 'displayPadCreationScreen',
|
|
deprecatedKey: 'deprecated',
|
|
// Sub
|
|
plan: 'CryptPad_plan',
|
|
// Apps
|
|
criticalApps: ['profile', 'settings', 'debug', 'admin', 'support', 'notifications']
|
|
};
|
|
});
|