Spaces:
Sleeping
Sleeping
Merge pull request #11 from PBL6-team-CATS/feature/login
Browse files
backend/src/modules/authentication/authentication.controller.ts
CHANGED
@@ -7,10 +7,10 @@ import {
|
|
7 |
Post,
|
8 |
Request,
|
9 |
} from '@nestjs/common';
|
10 |
-
import { AuthenticationGuard } from './authentication.guard';
|
11 |
-
import { AuthenticationService } from './authentication.service';
|
12 |
-
import { Public } from './authentication.decorator';
|
13 |
-
import { SignInDto } from './dto/sign-in.dto';
|
14 |
|
15 |
@Controller('authentication')
|
16 |
export class AuthenticationController {
|
|
|
7 |
Post,
|
8 |
Request,
|
9 |
} from '@nestjs/common';
|
10 |
+
import { AuthenticationGuard } from './authentication.guard.js';
|
11 |
+
import { AuthenticationService } from './authentication.service.js';
|
12 |
+
import { Public } from './authentication.decorator.js';
|
13 |
+
import { SignInDto } from './dto/sign-in.dto.js';
|
14 |
|
15 |
@Controller('authentication')
|
16 |
export class AuthenticationController {
|