X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/a1e2b8ba77e4a7273940a3fc542bc42e282618a7..fa1f1c301a58d163e452ca9d14d326934a403f17:/src/models/user.ts diff --git a/src/models/user.ts b/src/models/user.ts index dfb418892e..60d598d57b 100644 --- a/src/models/user.ts +++ b/src/models/user.ts @@ -4,7 +4,7 @@ import { Resource, ResourceKind } from '~/models/resource'; -export type userPrefs = { +export type UserPrefs = { profile?: { organization?: string, organization_email?: string, @@ -21,7 +21,7 @@ export interface User { uuid: string; ownerUuid: string; identityUrl: string; - prefs: userPrefs; + prefs: UserPrefs; isAdmin: boolean; }