Merge master branch
[arvados.git] / src / store / auth / auth-reducer.ts
index 3fd7044205854574f125202050f009ebf45189c5..02b9d30c30dcf422cb7ab631186654de76f6ccdc 100644 (file)
@@ -43,7 +43,9 @@ const authReducer = (state: AuthState = {}, action: AuthAction) => {
             const user = {
                 email: ud.email,
                 firstName: ud.first_name,
-                lastName: ud.last_name
+                lastName: ud.last_name,
+                uuid: ud.uuid,
+                ownerUuid: ud.owner_uuid
             };
             authService.saveUser(user);
             return {...state, user};