add skill to project

This commit is contained in:
JakkrapartXD 2026-01-23 10:53:48 +07:00
parent 5e7d265ffb
commit 6e5a8d01e6
8 changed files with 1055 additions and 1 deletions

View file

@ -0,0 +1 @@
../../.agents/skills/nodejs-backend-patterns

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1 @@
../../.agents/skills/nodejs-backend-patterns

View file

@ -0,0 +1 @@
../../.agents/skills/nodejs-backend-patterns

View file

@ -0,0 +1 @@
../../.agents/skills/nodejs-backend-patterns

View file

@ -0,0 +1 @@
../../.agents/skills/nodejs-backend-patterns

View file

@ -0,0 +1 @@
../../.agents/skills/nodejs-backend-patterns

View file

@ -24,6 +24,6 @@ export class CoursesController {
@SuccessResponse('200', 'Course fetched successfully') @SuccessResponse('200', 'Course fetched successfully')
@Response('401', 'Invalid or expired token') @Response('401', 'Invalid or expired token')
public async getCourseById(@Path() id: number): Promise<listCourseResponse> { public async getCourseById(@Path() id: number): Promise<listCourseResponse> {
return await this.coursesService.ListCourses(); return await this.coursesService.ListCourses(id);
} }
} }