mirror of
https://github.com/outline/outline.git
synced 2026-06-24 16:54:25 +03:00
13 lines
379 B
JavaScript
13 lines
379 B
JavaScript
// @flow
|
|
import AuthenticationProvider from "models/AuthenticationProvider";
|
|
import BaseStore from "./BaseStore";
|
|
import RootStore from "./RootStore";
|
|
|
|
export default class AuthenticationProvidersStore extends BaseStore<AuthenticationProvider> {
|
|
actions = ["list", "create", "update"];
|
|
|
|
constructor(rootStore: RootStore) {
|
|
super(rootStore, AuthenticationProvider);
|
|
}
|
|
}
|