Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Tom Moor <tom.moor@gmail.com>
12 lines
393 B
TypeScript
12 lines
393 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);
|
|
}
|
|
}
|