cryptpad/www/common/common-constants.js

17 lines
466 B
JavaScript
Raw Normal View History

2017-11-21 15:47:19 +00:00
define(function () {
return {
// localStorage
userHashKey: 'User_hash',
userNameKey: 'User_name',
fileHashKey: 'FS_hash',
// sessionStorage
newPadPathKey: "newPadPath",
// Store
displayNameKey: 'cryptpad.username',
oldStorageKey: 'CryptPad_RECENTPADS',
storageKey: 'filesData',
2017-11-30 09:33:09 +00:00
tokenKey: 'loginToken',
2018-01-12 08:48:40 +00:00
displayPadCreationScreen: 'displayPadCreationScreen'
2017-11-21 15:47:19 +00:00
};
});