Skip to content

Commit

Permalink
fix: correct the interface
Browse files Browse the repository at this point in the history
  • Loading branch information
Behzad-rabiei committed Dec 19, 2024
1 parent efc6d30 commit 3a4a64d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/interfaces/Token.interface.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { type TokenTypeNames } from '../config/enums';
export interface IToken {
token: string;
user: Types.ObjectId;
community: Types.ObjectId;
community?: Types.ObjectId;
type: TokenTypeNames;
expires: Date;
blacklisted?: boolean;
Expand Down

0 comments on commit 3a4a64d

Please sign in to comment.