Add handler to fetch all of the system permissions and load them into the state

This commit is contained in:
Dane Everitt 2019-11-03 17:37:06 -08:00
parent 867dbf3bd2
commit d69f816d9d
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53
8 changed files with 106 additions and 6 deletions

View file

@ -1,7 +1,16 @@
import { action, Action, thunk, Thunk } from 'easy-peasy';
import getServerSubusers from '@/api/server/users/getServerSubusers';
export type SubuserPermission = string;
export type SubuserPermission =
'websocket.*' |
'control.console' | 'control.start' | 'control.stop' | 'control.restart' | 'control.kill' |
'user.create' | 'user.read' | 'user.update' | 'user.delete' |
'file.create' | 'file.read' | 'file.update' | 'file.delete' | 'file.archive' | 'file.sftp' |
'allocation.read' | 'allocation.update' |
'startup.read' | 'startup.update' |
'database.create' | 'database.read' | 'database.update' | 'database.delete' | 'database.view_password' |
'schedule.create' | 'schedule.read' | 'schedule.update' | 'schedule.delete'
;
export interface Subuser {
uuid: string;
@ -30,7 +39,7 @@ const subusers: ServerSubuserStore = {
}),
appendSubuser: action((state, payload) => {
state.data = [...state.data, payload];
state.data = [ ...state.data, payload ];
}),
getSubusers: thunk(async (actions, payload) => {