Skip to content

Commit

Permalink
Merge branch 'main' into refactor-transaction-message
Browse files Browse the repository at this point in the history
  • Loading branch information
sshanzel authored Feb 7, 2025
2 parents 6138e0b + 1c87530 commit f823dd0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/entity/Settings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ export type SettingsFlags = Partial<{
clickbaitShieldEnabled: boolean;
prompt: object;
timezoneMismatchIgnore: string;
lastPrompt: string;
}>;

export type SettingsFlagsPublic = Pick<
Expand All @@ -40,6 +41,7 @@ export type SettingsFlagsPublic = Pick<
| 'clickbaitShieldEnabled'
| 'prompt'
| 'timezoneMismatchIgnore'
| 'lastPrompt'
>;

@Entity()
Expand Down
2 changes: 2 additions & 0 deletions src/schema/settings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ export const typeDefs = /* GraphQL */ `
sidebarBookmarksExpanded: Boolean
clickbaitShieldEnabled: Boolean
timezoneMismatchIgnore: String
lastPrompt: String
}
input SettingsFlagsPublicInput {
Expand All @@ -76,6 +77,7 @@ export const typeDefs = /* GraphQL */ `
clickbaitShieldEnabled: Boolean
prompt: JSONObject
timezoneMismatchIgnore: String
lastPrompt: String
}
"""
Expand Down

0 comments on commit f823dd0

Please sign in to comment.