Skip to content
Snippets Groups Projects

Hin 1036

Merged Andrei Cioromila requested to merge hin-1036 into develop
1 unresolved thread
Files
14
@@ -167,11 +167,11 @@ export const currentUserIsAuthor = (state, id) => {
.includes(id)
}
export const getUserPermissions = ({ currentUser }) =>
get(currentUser, 'user.teams', []).map(t => ({
objectId: t.object.id,
objectType: t.object.type,
role: t.teamType.permissions,
export const getUserPermissions = ({ teams = [] }) =>
teams.map(t => ({
objectId: get(t, 'object.id', ''),
objectType: get(t, 'object.type', ''),
role: get(t, 'teamType.permissions', ''),
}))
export const userNotConfirmed = ({ currentUser }) =>