Skip to content

Commit

Permalink
refactor: comment unused fields
Browse files Browse the repository at this point in the history
  • Loading branch information
jbrunton committed Sep 21, 2024
1 parent 6290d11 commit 25ba0b7
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions services/api/src/domain/entities/auth.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
export interface AuthInfo {
sub: string;
name?: string;
given_name?: string;
family_name?: string;
nickname?: string;
// given_name?: string;
// family_name?: string;
// nickname?: string;
picture?: string;
locale?: string;
updated_at?: number | string;
// locale?: string;
// updated_at?: number | string;
email?: string;
email_verified?: boolean;
// email_verified?: boolean;
}

0 comments on commit 25ba0b7

Please sign in to comment.