[arvados] updated: 2.7.0-6606-g25e8b0468f
git repository hosting
git at public.arvados.org
Mon May 20 15:37:31 UTC 2024
Summary of changes:
services/workbench2/src/store/auth/auth-reducer.test.ts | 8 ++++++--
1 file changed, 6 insertions(+), 2 deletions(-)
via 25e8b0468f90b561594ff234321168adfeee176f (commit)
from eb277a8dcfd0c5c4c7a06ae2c2a45effb6dcaeee (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
commit 25e8b0468f90b561594ff234321168adfeee176f
Author: Lisa Knox <lisaknox83 at gmail.com>
Date: Mon May 20 11:37:22 2024 -0400
21720: added missing user properties in auth-reducer.test
Arvados-DCO-1.1-Signed-off-by: Lisa Knox <lisa.knox at curii.com>
diff --git a/services/workbench2/src/store/auth/auth-reducer.test.ts b/services/workbench2/src/store/auth/auth-reducer.test.ts
index 6a1fb87faa..c0f8545711 100644
--- a/services/workbench2/src/store/auth/auth-reducer.test.ts
+++ b/services/workbench2/src/store/auth/auth-reducer.test.ts
@@ -33,7 +33,9 @@ describe('auth-reducer', () => {
username: "username",
prefs: {},
isAdmin: false,
- isActive: true
+ isActive: true,
+ canWrite: false,
+ canManage: false,
};
const state = reducer(initialState, authActions.INIT_USER({ user, token: "token" }));
expect(state).toEqual({
@@ -62,7 +64,9 @@ describe('auth-reducer', () => {
username: "username",
prefs: {},
isAdmin: false,
- isActive: true
+ isActive: true,
+ canWrite: false,
+ canManage: false,
};
const state = reducer(initialState, authActions.USER_DETAILS_SUCCESS(user));
-----------------------------------------------------------------------
hooks/post-receive
--
More information about the arvados-commits
mailing list