mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
18 lines
495 B
TypeScript
18 lines
495 B
TypeScript
import { APITokenData, IAPITokenData } from "./api-token.data.store";
|
|
import { IWebhookData, WebhookData } from "./webhook.data.store";
|
|
import { IWorkspaceData, WorkspaceData } from "./workspace.data.store";
|
|
|
|
export class DataStore {
|
|
workspace: IWorkspaceData;
|
|
webhook: IWebhookData;
|
|
apiToken: IAPITokenData;
|
|
|
|
constructor() {
|
|
this.workspace = new WorkspaceData(this);
|
|
this.webhook = new WebhookData(this);
|
|
this.apiToken = new APITokenData(this);
|
|
}
|
|
|
|
resetOnSignOut() {}
|
|
}
|