mirror of
https://github.com/immich-app/immich.git
synced 2025-01-01 08:31:59 +00:00
25 lines
585 B
TypeScript
25 lines
585 B
TypeScript
import { Controller, Get, Header } from '@nestjs/common';
|
|
import { ApiExcludeEndpoint } from '@nestjs/swagger';
|
|
import { SystemConfigService } from 'src/services/system-config.service';
|
|
|
|
@Controller()
|
|
export class AppController {
|
|
constructor(private service: SystemConfigService) {}
|
|
|
|
@ApiExcludeEndpoint()
|
|
@Get('.well-known/immich')
|
|
getImmichWellKnown() {
|
|
return {
|
|
api: {
|
|
endpoint: '/api',
|
|
},
|
|
};
|
|
}
|
|
|
|
@ApiExcludeEndpoint()
|
|
@Get('custom.css')
|
|
@Header('Content-Type', 'text/css')
|
|
getCustomCss() {
|
|
return this.service.getCustomCss();
|
|
}
|
|
}
|