My Account adjustments
[arvados-workbench2.git] / src / models / user.ts
index dfb418892ef363192b73c5e8f6983c887910603b..60d598d57bd637c0728476f6b6b5f18a77909270 100644 (file)
@@ -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;
 }