mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
fa8ae6b8ce
* fix: deepsource antipatterns * fix: deepsource exclude file patterns * chore: file name changes and removed unwanted variables * fix: changing version number for editor
41 lines
1.3 KiB
TypeScript
41 lines
1.3 KiB
TypeScript
import { API_BASE_URL } from "helpers/common.helper";
|
|
import { APIService } from "./api.service";
|
|
import { IApiToken } from "types/api_token";
|
|
|
|
export class APITokenService extends APIService {
|
|
constructor() {
|
|
super(API_BASE_URL);
|
|
}
|
|
|
|
async getApiTokens(workspaceSlug: string): Promise<IApiToken[]> {
|
|
return this.get(`/api/workspaces/${workspaceSlug}/api-tokens/`)
|
|
.then((response) => response?.data)
|
|
.catch((error) => {
|
|
throw error?.response?.data;
|
|
});
|
|
}
|
|
|
|
async retrieveApiToken(workspaceSlug: string, tokenId: String): Promise<IApiToken> {
|
|
return this.get(`/api/workspaces/${workspaceSlug}/api-tokens/${tokenId}`)
|
|
.then((response) => response?.data)
|
|
.catch((error) => {
|
|
throw error?.response?.data;
|
|
});
|
|
}
|
|
|
|
async createApiToken(workspaceSlug: string, data: any): Promise<IApiToken> {
|
|
return this.post(`/api/workspaces/${workspaceSlug}/api-tokens/`, data)
|
|
.then((response) => response?.data)
|
|
.catch((error) => {
|
|
throw error?.response?.data;
|
|
});
|
|
}
|
|
async deleteApiToken(workspaceSlug: string, tokenId: String): Promise<IApiToken> {
|
|
return this.delete(`/api/workspaces/${workspaceSlug}/api-tokens/${tokenId}`)
|
|
.then((response) => response?.data)
|
|
.catch((error) => {
|
|
throw error?.response?.data;
|
|
});
|
|
}
|
|
}
|