18 lines
476 B
TypeScript
18 lines
476 B
TypeScript
import { Controller, Post } from '@nestjs/common';
|
|
import { DashboardService } from '../../services/dashboard.service';
|
|
|
|
@Controller('admin/dashboards')
|
|
export class AdminDashboardController {
|
|
constructor(private readonly dashboardService: DashboardService) {}
|
|
|
|
@Post('reset-tool')
|
|
async resetTool() {
|
|
return await this.dashboardService.resetTool();
|
|
}
|
|
|
|
@Post('shutdown-tool')
|
|
async shutdownTool() {
|
|
return await this.dashboardService.shutdownTool();
|
|
}
|
|
}
|