2017-11-21 16:47:19 +01:00
|
|
|
define(function () {
|
|
|
|
|
return {
|
|
|
|
|
// localStorage
|
|
|
|
|
userHashKey: 'User_hash',
|
|
|
|
|
userNameKey: 'User_name',
|
2018-06-19 18:08:14 +02:00
|
|
|
blockHashKey: 'Block_hash',
|
2017-11-21 16:47:19 +01:00
|
|
|
fileHashKey: 'FS_hash',
|
|
|
|
|
// sessionStorage
|
|
|
|
|
newPadPathKey: "newPadPath",
|
|
|
|
|
// Store
|
|
|
|
|
displayNameKey: 'cryptpad.username',
|
|
|
|
|
oldStorageKey: 'CryptPad_RECENTPADS',
|
|
|
|
|
storageKey: 'filesData',
|
2017-11-30 10:33:09 +01:00
|
|
|
tokenKey: 'loginToken',
|
2018-06-22 10:37:54 +02:00
|
|
|
displayPadCreationScreen: 'displayPadCreationScreen',
|
2018-09-14 11:21:52 +02:00
|
|
|
deprecatedKey: 'deprecated',
|
|
|
|
|
// Sub
|
|
|
|
|
plan: 'CryptPad_plan'
|
2017-11-21 16:47:19 +01:00
|
|
|
};
|
|
|
|
|
});
|