Commit acbcca11 by Johannes Schill

fix: Add plugins to StoreState interface

parent 7df00747
...@@ -9,6 +9,7 @@ import { ExploreState } from './explore'; ...@@ -9,6 +9,7 @@ import { ExploreState } from './explore';
import { UsersState, UserState } from './user'; import { UsersState, UserState } from './user';
import { OrganizationState } from './organization'; import { OrganizationState } from './organization';
import { AppNotificationsState } from './appNotifications'; import { AppNotificationsState } from './appNotifications';
import { PluginsState } from './plugins';
export interface StoreState { export interface StoreState {
navIndex: NavIndex; navIndex: NavIndex;
...@@ -24,4 +25,5 @@ export interface StoreState { ...@@ -24,4 +25,5 @@ export interface StoreState {
organization: OrganizationState; organization: OrganizationState;
appNotifications: AppNotificationsState; appNotifications: AppNotificationsState;
user: UserState; user: UserState;
plugins: PluginsState;
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment