* layout * Refactor * wip * Quick changes to make this deployable without full management * test
14 lines
397 B
TypeScript
14 lines
397 B
TypeScript
import AuthenticationProvider from "~/models/AuthenticationProvider";
|
|
import BaseStore, { RPCAction } from "./BaseStore";
|
|
import RootStore from "./RootStore";
|
|
|
|
export default class AuthenticationProvidersStore extends BaseStore<
|
|
AuthenticationProvider
|
|
> {
|
|
actions = [RPCAction.List, RPCAction.Update];
|
|
|
|
constructor(rootStore: RootStore) {
|
|
super(rootStore, AuthenticationProvider);
|
|
}
|
|
}
|