wip: evaluation/tests endpoint

This commit is contained in:
Eugene Molodkin 2024-11-04 14:38:29 +01:00 committed by Oleg Ivaniv
parent 84430e9980
commit 3dc9a6eb1d
No known key found for this signature in database

View file

@ -6,7 +6,7 @@ import { Get, /*Patch, Post,*/ RestController } from '@/decorators';
import { TestsService } from './tests.service';
import { TestsRequest } from './tests.types';
@RestController('/tests')
@RestController('/evaluation/tests')
export class TestsController {
constructor(private readonly testsService: TestsService) {}