mirror of
https://github.com/immich-app/immich.git
synced 2026-02-18 09:35:17 -05:00
* commit 1 (isPanorama: boolean)
* working solution for projectiontypeenum
* fix
* format fix
* fix
* fix
* fix
* fix
* enum projectiontype
* working solution with exif
* fix
* reverted >
* fix format
* reverted auto-magic api.ts prettification
* fix
* reverted api.ts autogenerated
* api ts regenerated
* Update web/src/lib/components/assets/thumbnail/thumbnail.svelte
Co-authored-by: Sergey Kondrikov <sergey.kondrikov@gmail.com>
* Update web/src/lib/components/asset-viewer/asset-viewer.svelte
Co-authored-by: Sergey Kondrikov <sergey.kondrikov@gmail.com>
* exifProjectionType
* Update server/src/microservices/processors/metadata-extraction.processor.ts
Co-authored-by: Sergey Kondrikov <sergey.kondrikov@gmail.com>
* projectionType?: string = ProjectionType.NONE;
* not null
* projectionType!: ProjectionType;
* opeapi generator fix
* fixes
* fix
* fix
* generate api
* asset.exifInifo?.projectionType
* Update server/src/domain/asset/response-dto/exif-response.dto.ts
Co-authored-by: Jason Rasmussen <jrasm91@gmail.com>
* Update server/src/microservices/processors/metadata-extraction.processor.ts
Co-authored-by: Jason Rasmussen <jrasm91@gmail.com>
* enum -> varchar;projectiontypeenum->projectiontype
* asset-viewer fixed prettiffier
* @Column({}) single line
* enum | string
* make api
* enum | string
* enum | str fix
* fix
* chore: use string instead of enum
* chore: open api
* fix: checks
---------
Co-authored-by: Sergey Kondrikov <sergey.kondrikov@gmail.com>
Co-authored-by: Alex Tran <alex.tran1502@gmail.com>
Co-authored-by: Jason Rasmussen <jrasm91@gmail.com>
39 lines
1.0 KiB
TypeScript
39 lines
1.0 KiB
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',
|
|
PEOPLE = '/people',
|
|
PHOTOS = '/photos',
|
|
EXPLORE = '/explore',
|
|
SHARING = '/sharing',
|
|
SHARED_LINKS = '/sharing/sharedlinks',
|
|
SEARCH = '/search',
|
|
MAP = '/map',
|
|
USER_SETTINGS = '/user-settings',
|
|
MEMORY = '/memory',
|
|
|
|
AUTH_LOGIN = '/auth/login',
|
|
AUTH_LOGOUT = '/auth/logout',
|
|
AUTH_REGISTER = '/auth/register',
|
|
AUTH_CHANGE_PASSWORD = '/auth/change-password',
|
|
}
|
|
|
|
export enum ProjectionType {
|
|
EQUIRECTANGULAR = 'EQUIRECTANGULAR',
|
|
CUBEMAP = 'CUBEMAP',
|
|
CUBESTRIP = 'CUBESTRIP',
|
|
EQUIRECTANGULAR_STEREO = 'EQUIRECTANGULAR_STEREO',
|
|
CUBEMAP_STEREO = 'CUBEMAP_STEREO',
|
|
CUBESTRIP_STEREO = 'CUBESTRIP_STEREO',
|
|
CYLINDER = 'CYLINDER',
|
|
NONE = 'NONE',
|
|
}
|