Skip to content

Commit

Permalink
refactor: set security_bypass as default
Browse files Browse the repository at this point in the history
  • Loading branch information
emrahcom committed Jan 10, 2024
1 parent 113832f commit ab28a29
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ export function createContext(userInfo: Record<string, unknown>) {
name: userInfo.name || userInfo.preferred_username || "",
email: userInfo.email || "",
lobby_bypass: true,
security_bypass: true,
},
};

Expand Down
1 change: 1 addition & 0 deletions context.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ export function createContext(userInfo: Record<string, unknown>) {
name: userInfo.preferred_username || "",
email: userInfo.email || "",
lobby_bypass: true,
security_bypass: true,
},
};

Expand Down

0 comments on commit ab28a29

Please sign in to comment.