mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
32 lines
858 B
TypeScript
32 lines
858 B
TypeScript
|
// helpers
|
||
|
import { API_BASE_URL } from "@/helpers/common.helper";
|
||
|
// services
|
||
|
import { APIService } from "@/services/api.service";
|
||
|
|
||
|
export class ProjectArchiveService extends APIService {
|
||
|
constructor() {
|
||
|
super(API_BASE_URL);
|
||
|
}
|
||
|
|
||
|
async archiveProject(
|
||
|
workspaceSlug: string,
|
||
|
projectId: string
|
||
|
): Promise<{
|
||
|
archived_at: string;
|
||
|
}> {
|
||
|
return this.post(`/api/workspaces/${workspaceSlug}/projects/${projectId}/archive/`)
|
||
|
.then((response) => response?.data)
|
||
|
.catch((error) => {
|
||
|
throw error?.response?.data;
|
||
|
});
|
||
|
}
|
||
|
|
||
|
async restoreProject(workspaceSlug: string, projectId: string): Promise<void> {
|
||
|
return this.delete(`/api/workspaces/${workspaceSlug}/projects/${projectId}/archive/`)
|
||
|
.then((response) => response?.data)
|
||
|
.catch((error) => {
|
||
|
throw error?.response?.data;
|
||
|
});
|
||
|
}
|
||
|
}
|