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,13 +1,16 @@
import { createStore } from 'easy-peasy';
import flashes, { FlashStore } from '@/state/flashes';
import user, { UserStore } from '@/state/user';
import permissions, { GloablPermissionsStore } from '@/state/permissions';
export interface ApplicationStore {
permissions: GloablPermissionsStore;
flashes: FlashStore;
user: UserStore;
}
const state: ApplicationStore = {
permissions,
flashes,
user,
};