feat(web): license UI ()

This commit is contained in:
Alex 2024-07-18 10:56:27 -05:00 committed by GitHub
parent 88f62087fd
commit ef0e1a81b9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
39 changed files with 1157 additions and 148 deletions
web/src/lib

View file

@ -34,6 +34,7 @@ export enum AppRoute {
MEMORY = '/memory',
TRASH = '/trash',
PARTNERS = '/partners',
BUY = '/buy',
AUTH_LOGIN = '/auth/login',
AUTH_REGISTER = '/auth/register',
@ -309,3 +310,8 @@ export const langs = [
},
{ name: 'Development (keys only)', code: 'dev', loader: () => Promise.resolve({}) },
];
export enum ImmichLicense {
Client = 'immich-client',
Server = 'immich-server',
}