mirror of
https://github.com/makeplane/plane.git
synced 2026-04-29 04:30:30 -05:00
944b873184
* chore: move all services inside the apps folder * chore: rename apiserver to server
25 lines
795 B
TypeScript
25 lines
795 B
TypeScript
import { API_BASE_URL } from "@plane/constants";
|
|
import { EViewAccess } from "@plane/types";
|
|
import { WorkspaceService as CoreWorkspaceService } from "@/services/workspace.service";
|
|
|
|
export class WorkspaceService extends CoreWorkspaceService {
|
|
constructor() {
|
|
super(API_BASE_URL);
|
|
}
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
async updateViewAccess(workspaceSlug: string, viewId: string, access: EViewAccess) {
|
|
return Promise.resolve();
|
|
}
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
async lockView(workspaceSlug: string, viewId: string) {
|
|
return Promise.resolve();
|
|
}
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
async unLockView(workspaceSlug: string, viewId: string) {
|
|
return Promise.resolve();
|
|
}
|
|
}
|