* feat(web,server): disable password login * chore: unit tests * chore: fix import * chore: linting * feat(cli): server command for enable/disable password login * chore: update docs * feat(web): confirm dialogue * chore: linting * chore: linting * chore: linting * chore: linting * chore: linting * chore: fix web test * chore: server unit tests
16 lines
447 B
TypeScript
16 lines
447 B
TypeScript
import { Controller, HttpCode, HttpStatus, Post } from '@nestjs/common';
|
|
import { ApiExcludeEndpoint } from '@nestjs/swagger';
|
|
import { ImmichConfigService } from '@app/immich-config';
|
|
|
|
@Controller()
|
|
export class AppController {
|
|
constructor(private configService: ImmichConfigService) {}
|
|
|
|
@ApiExcludeEndpoint()
|
|
@Post('refresh-config')
|
|
@HttpCode(HttpStatus.OK)
|
|
public reloadConfig() {
|
|
return this.configService.refreshConfig();
|
|
}
|
|
}
|