chore: Remove RPCAction.Count as default valid action on frontend (Only available for users)
This commit is contained in:
@@ -1,16 +1,9 @@
|
||||
import { computed } from "mobx";
|
||||
import WebhookSubscription from "~/models/WebhookSubscription";
|
||||
import RootStore from "./RootStore";
|
||||
import Store, { RPCAction } from "./base/Store";
|
||||
import Store from "./base/Store";
|
||||
|
||||
export default class WebhookSubscriptionsStore extends Store<WebhookSubscription> {
|
||||
actions = [
|
||||
RPCAction.List,
|
||||
RPCAction.Create,
|
||||
RPCAction.Delete,
|
||||
RPCAction.Update,
|
||||
];
|
||||
|
||||
constructor(rootStore: RootStore) {
|
||||
super(rootStore, WebhookSubscription);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user