mirror of
https://github.com/immich-app/immich
synced 2025-11-07 17:27:20 +00:00
* First crude implementation of the global asset map in web * Use single DOM element for all markers * Minor layout changes * Refactor * Add asset viewer * Add API endpoint that returns only assets with location information (Thanks @EPP100) * Remove sidebar icon flip * Add dark theme support * Center map to most recent asset * Allow cluster viewing * Fix linter errors * Add newlines * Fix ts errors * Fix eslint error * Run prettier * Server code style * Fix openapi mobile code generation issues * Map markers test * fix: Support video thumbnails * Update API * Review suggestions * Review suggestions * Linter error * Chage mapMarker endpoint to map-marker * Clean up leaflet imports
23 lines
641 B
TypeScript
23 lines
641 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',
|
|
MAP = '/map',
|
|
|
|
AUTH_LOGIN = '/auth/login',
|
|
AUTH_LOGOUT = '/auth/logout',
|
|
AUTH_REGISTER = '/auth/register',
|
|
AUTH_CHANGE_PASSWORD = '/auth/change-password'
|
|
}
|