mirror of
https://github.com/immich-app/immich.git
synced 2025-12-21 09:15:44 +03:00
* feat (server, web): add archive * chore: generate api * feat (web): add empty placeholder for archive page * chore: remove title on favorites page Duplicates sidebar selection. Two pages (Archive and Favorites) are consistent now * refactor (web): create EmptyPlaceholder component for empty pages * fixed menu close button not close: * fix (web): remove not necessary store call * test (web): simplify asset tests code * test (web): simplify asset tests code * chore (server): remove isArchived while uploading * chore (server): remove isArchived from typesense schema * chore: generate api * fix (web): delete asset from archive page * chore: change archive asset count endpoint old endpoint: /asset/archived-count-by-user-id new endpoint: /asset/stat/archive * chore: generate api --------- Co-authored-by: Alex Tran <alex.tran1502@gmail.com>
23 lines
626 B
TypeScript
23 lines
626 B
TypeScript
import { env } from '$env/dynamic/public';
|
|
export const loginPageMessage: string | undefined = env.PUBLIC_LOGIN_PAGE_MESSAGE;
|
|
|
|
export enum AppRoute {
|
|
ADMIN_USER_MANAGEMENT = '/admin/user-management',
|
|
ADMIN_SETTINGS = '/admin/system-settings',
|
|
ADMIN_STATS = '/admin/server-status',
|
|
ADMIN_JOBS = '/admin/jobs-status',
|
|
|
|
ALBUMS = '/albums',
|
|
ARCHIVE = '/archive',
|
|
FAVORITES = '/favorites',
|
|
PHOTOS = '/photos',
|
|
EXPLORE = '/explore',
|
|
SHARING = '/sharing',
|
|
SEARCH = '/search',
|
|
|
|
AUTH_LOGIN = '/auth/login',
|
|
AUTH_LOGOUT = '/auth/logout',
|
|
AUTH_REGISTER = '/auth/register',
|
|
AUTH_CHANGE_PASSWORD = '/auth/change-password'
|
|
}
|