mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-02 23:19:57 +00:00
17 lines
687 B
TypeScript
17 lines
687 B
TypeScript
export const APP_NAME = 'Elk'
|
|
|
|
export const DEFAULT_POST_CHARS_LIMIT = 500
|
|
export const DEFAULT_SERVER = 'mas.to'
|
|
|
|
export const STORAGE_KEY_DRAFTS = 'elk-drafts'
|
|
export const STORAGE_KEY_USERS = 'elk-users'
|
|
export const STORAGE_KEY_SERVERS = 'elk-servers'
|
|
export const STORAGE_KEY_CURRENT_USER = 'elk-current-user'
|
|
export const STORAGE_KEY_NOTIFY_TAB = 'elk-notify-tab'
|
|
export const STORAGE_KEY_FIRST_VISIT = 'elk-first-visit'
|
|
export const STORAGE_KEY_ZEN_MODE = 'elk-zenmode'
|
|
export const STORAGE_KEY_LANG = 'elk-lang'
|
|
export const STORAGE_KEY_FEATURE_FLAGS = 'elk-feature-flags'
|
|
|
|
export const HANDLED_MASTO_URLS = /^(https?:\/\/)?([\w\d-]+\.)+\w+\/(@[@\w\d-\.]+)(\/objects)?(\/\d+)?$/
|