/opt/mawid/apps/api/src/health
NameSizeModeActions
health.controller.spec.ts2600644editdlrm
health.controller.ts3360644editdlrm
Edit: /opt/mawid/apps/api/src/health/health.controller.ts (336B)
import { Controller, Get } from '@nestjs/common'; import { SkipThrottle } from '@nestjs/throttler'; import { Public } from '../auth/public.decorator'; @Public() @SkipThrottle() @Controller('health') export class HealthController { @Get() check() { return { status: 'ok', service: 'api', time: new Date().toISOString() }; } }