Skip to content

Commit

Permalink
chore(users): restore AuthorizedRequest type
Browse files Browse the repository at this point in the history
  • Loading branch information
sw-wayner committed Jan 16, 2024
1 parent 9605502 commit 3ef2de1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/server/http/users/controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import {
UsersUsecase
} from '../../../core';

type AuthorizedRequest<T> = Request<T> & { user: { _id: string, email: string } };
type AuthorizedRequest<T> = Request<T> & { user: { _id: string } };

export class HTTPUsersController {
constructor(
Expand Down

0 comments on commit 3ef2de1

Please sign in to comment.