Skip to content

Commit

Permalink
update party model
Browse files Browse the repository at this point in the history
  • Loading branch information
minhd-vu committed Feb 9, 2024
1 parent f0523df commit 3c40d81
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nextjs/models/user.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import mongoose, { Document, Schema, Types } from "mongoose";
import { Party } from "./Party";
import { IParty } from "./Party";

export interface IUser extends Document {
email: string;
name: string;
target: IUser;
party: Party;
party: IParty;
isAlive: boolean;
isPending: boolean;
isAdmin: boolean;
Expand Down

0 comments on commit 3c40d81

Please sign in to comment.