feat: Document subscriptions (#3834)
Co-authored-by: Tom Moor <tom.moor@gmail.com>
This commit is contained in:
committed by
GitHub
parent
864f585e5b
commit
24c71c38a5
11
app/stores/SubscriptionsStore.ts
Normal file
11
app/stores/SubscriptionsStore.ts
Normal file
@@ -0,0 +1,11 @@
|
||||
import Subscription from "~/models/Subscription";
|
||||
import BaseStore, { RPCAction } from "./BaseStore";
|
||||
import RootStore from "./RootStore";
|
||||
|
||||
export default class SubscriptionsStore extends BaseStore<Subscription> {
|
||||
actions = [RPCAction.List, RPCAction.Create, RPCAction.Delete];
|
||||
|
||||
constructor(rootStore: RootStore) {
|
||||
super(rootStore, Subscription);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user