Skip to content

Commit 239c32b

Browse files
committed
chore: add url to profile consents
1 parent d912cc3 commit 239c32b

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

frontend/app/api/generated.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2511,7 +2511,7 @@ export type ChallengesPageQuery = { __typename?: 'Query', myCurrentProject: { __
25112511
export type ProfilePageQueryVariables = Exact<{ [key: string]: never; }>;
25122512

25132513

2514-
export type ProfilePageQuery = { __typename?: 'Query', me: { __typename?: 'User', id: string, name: string, consentStatus: { __typename?: 'ConsentStatus', pendingConsents: Array<{ __typename: 'Consent', id: string, key: string, version: number, title: string, managementType: ConsentManagementType, managedBy?: string | null, body: { __typename?: 'MarkdownText', html: string } }> } }, myCurrentProject: { __typename?: 'Project', id: string, name: string, achievements: Array<
2514+
export type ProfilePageQuery = { __typename?: 'Query', me: { __typename?: 'User', id: string, name: string, consentStatus: { __typename?: 'ConsentStatus', pendingConsents: Array<{ __typename: 'Consent', id: string, key: string, version: number, title: string, url?: string | null, managementType: ConsentManagementType, managedBy?: string | null, body: { __typename?: 'MarkdownText', html: string } }> } }, myCurrentProject: { __typename?: 'Project', id: string, name: string, achievements: Array<
25152515
| { __typename?: 'ListeningAchievement', id: string, name: string, description: string, image?: string | null, hidden: boolean, achievedAt?: any | null, points: number }
25162516
| { __typename?: 'QuizAchievement', id: string, name: string, description: string, image?: string | null, hidden: boolean, achievedAt?: any | null, points: number }
25172517
| { __typename?: 'ReadingAchievement', id: string, name: string, description: string, image?: string | null, hidden: boolean, achievedAt?: any | null, points: number }
@@ -3272,6 +3272,7 @@ export const ProfilePageDocument = gql`
32723272
body {
32733273
html
32743274
}
3275+
url
32753276
managementType
32763277
managedBy
32773278
}

frontend/app/graphql/queries/pages/profile.gql

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ query ProfilePage {
1212
body {
1313
html
1414
}
15+
url
1516
managementType
1617
managedBy
1718
}

0 commit comments

Comments
 (0)