* refactor: move web utils to packages * fix: build and lint errors * chore: update drag handle plugin * chore: update table cell type to fix build errors * fix: build errors * chore: sync few changes * fix: build errors * chore: minor fixes related to duplicate assets imports * fix: build errors * chore: minor changes
23 lines
764 B
TypeScript
23 lines
764 B
TypeScript
import { EViewAccess, API_BASE_URL } from "@plane/constants";
|
|
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();
|
|
}
|
|
}
|