1
0
mirror of https://github.com/immich-app/immich.git synced 2024-11-28 09:33:27 +02:00
immich/server
Jason Rasmussen b5d75e2016
feat(server,web): system config for admin (#959)
* feat: add admin config module for user configured config, uses it for ffmpeg

* feat: add api endpoint to retrieve admin config settings and values

* feat: add settings panel to admin page on web (wip)

* feat: add api endpoint to update the admin config

* chore: re-generate openapi spec after rebase

* refactor: move from admin config to system config naming

* chore: move away from UseGuards to new @Authenticated decorator

* style: dark mode styling for lists and fix conflicting colors

* wip: 2 column design, no edit button

* refactor: system config

* chore: generate open api

* chore: rm broken test

* chore: cleanup types

* refactor: config module names

Co-authored-by: Zack Pollard <zackpollard@ymail.com>
Co-authored-by: Zack Pollard <zack.pollard@moonpig.com>
2022-11-14 22:39:32 -06:00
..
apps feat(server,web): system config for admin (#959) 2022-11-14 22:39:32 -06:00
bin feat(server): reset admin password using cli command in the server container (#928) 2022-11-05 11:28:40 -05:00
libs feat(server,web): system config for admin (#959) 2022-11-14 22:39:32 -06:00
.dockerignore feat(immich-server) use ubuntu base-image (#851) 2022-10-24 14:59:07 -05:00
.eslintrc.js Transfer repository from Gitlab 2022-02-03 10:06:44 -06:00
.gitignore Added generated geocoding files to gitignore 2022-09-28 15:44:43 -05:00
.prettierrc Add web interface with admin functionality (#167) 2022-05-21 02:23:55 -05:00
Dockerfile refactor: multistage builds (#955) 2022-11-10 22:22:17 -06:00
immich-openapi-specs.json feat(server,web): system config for admin (#959) 2022-11-14 22:39:32 -06:00
LICENSE feat(docker) revert ubuntu base image (#863) 2022-10-25 14:18:37 -05:00
nest-cli.json feat(server,web): system config for admin (#959) 2022-11-14 22:39:32 -06:00
openapitools.json Add OpenAPI Specs and Response DTOs (#320) 2022-07-08 21:26:50 -05:00
package-lock.json feat(server,web): OIDC Implementation (#884) 2022-11-14 20:24:25 -06:00
package.json feat(server,web): system config for admin (#959) 2022-11-14 22:39:32 -06:00
README.md feat(server,web): system config for admin (#959) 2022-11-14 22:39:32 -06:00
start-microservices.sh Improve Docker setup and reduce memory usage of production containers (#338) 2022-07-13 07:42:00 -05:00
start-server.sh Improve Docker setup and reduce memory usage of production containers (#338) 2022-07-13 07:42:00 -05:00
tsconfig.build.json Transfer repository from Gitlab 2022-02-03 10:06:44 -06:00
tsconfig.json feat(server,web): system config for admin (#959) 2022-11-14 22:39:32 -06:00

How to run migration

  1. Attached to the container shell
  2. Run npm run typeorm -- migration:generate ./libs/database/src/<migration-name> -d libs/database/src/config/database.config.ts
  3. Check if the migration file makes sense
  4. Move the migration file to folder server/libs/database/src/migrations in your code editor.