X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/4ea2ff188ec745966387ce8bbe14880bfeede863..3acd5eca12d4c828e454dfe636ee72bdd44745c7:/src/models/user.ts diff --git a/src/models/user.ts b/src/models/user.ts index dfb418892e..a7b8458bf8 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; } @@ -37,7 +37,7 @@ export interface UserResource extends Resource { lastName: string; identityUrl: string; isAdmin: boolean; - prefs: string; + prefs: UserPrefs; defaultOwnerUuid: string; isActive: boolean; writableBy: string[];