Skip to content
This repository was archived by the owner on Apr 8, 2026. It is now read-only.

Commit 8e821d9

Browse files
committed
feat: Add Friend interface to manage user relationships
1 parent 2d09183 commit 8e821d9

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

src/interfaces/User.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,3 +55,10 @@ export interface Oauth2User {
5555
discord_id?: string;
5656
google_id?: string;
5757
}
58+
59+
export interface Friend {
60+
user_1: string;
61+
user_2: string;
62+
datetime?: string;
63+
status: 'pending' | 'approved';
64+
}

0 commit comments

Comments
 (0)