Skip to content

Commit

Permalink
OV-5: * prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
stefano-lacorazza committed Aug 22, 2024
1 parent b4fe14c commit 9b53386
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 9 deletions.
1 change: 0 additions & 1 deletion backend/src/bundles/auth/auth.controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,6 @@ class AuthController extends BaseController {
* $ref: '#/components/schemas/User'
*/


private async signUp(
options: ApiHandlerOptions<{
body: UserSignUpRequestDto;
Expand Down
2 changes: 0 additions & 2 deletions backend/src/bundles/auth/auth.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,8 @@ import {
type UserSignInResponseDto,
} from '~/bundles/users/users.js';
import { HttpCode, HttpError } from '~/common/http/http.js';

import { cryptService, tokenService } from '~/common/services/services.js';


import { UserValidationMessage } from './enums/enums.js';

class AuthService {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@

type UserSignInRequestDto = {
email: string;
password: string;
};


export { type UserSignInRequestDto };
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@

type UserSignInResponseDto = {
id: number;
email: string;
token: string;
};


export { type UserSignInResponseDto };
Original file line number Diff line number Diff line change
@@ -1,4 +1,2 @@

export { userSignIn } from './user-sign-in.validation-schema.js';

export { userSignUp } from './user-sign-up.validation-schema.js';

0 comments on commit 9b53386

Please sign in to comment.