Skip to content

Commit

Permalink
fix tasks controller
Browse files Browse the repository at this point in the history
  • Loading branch information
ShaalanMarwan committed Apr 28, 2022
1 parent 48105e0 commit a7a299b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/tasks/tasks.controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ import { Controller, Post } from '@nestjs/common';

@Controller('tasks')
export class TasksController {

@Post('')
createTask(){
return true;
}
@Post('')
createTask() {
return true;
}
}

0 comments on commit a7a299b

Please sign in to comment.