mirror of
https://github.com/Unleash/unleash.git
synced 2024-12-28 00:06:53 +01:00
f669f96d49
* chore: update changelog * 4.0.0-alpha.4 * wip: frontend should understand rbac permissions * move all feature components to hasAccess * fix: remove all change permissions * fix all the tests * fix all the tests x2 * fix snapshot for node 12 * fine tune perms a bit * refactor: rewrite to ts * refactor: use admin constant * fix: import Co-authored-by: Fredrik Oseberg <fredrik.no@gmail.com>
12 lines
248 B
JavaScript
12 lines
248 B
JavaScript
import { Map as $MAp } from 'immutable';
|
|
|
|
export const createFakeStore = (permissions) => {
|
|
return {
|
|
getState: () => ({
|
|
user:
|
|
new $MAp({
|
|
permissions
|
|
})
|
|
}),
|
|
}
|
|
} |