mirror of
https://github.com/makeplane/plane.git
synced 2025-12-24 23:59:40 +01:00
24 lines
558 B
TypeScript
24 lines
558 B
TypeScript
import { TTimezones } from "@plane/types";
|
|
// helpers
|
|
import { API_BASE_URL } from "@/helpers/common.helper";
|
|
// api services
|
|
import { APIService } from "@/services/api.service";
|
|
|
|
export class TimezoneService extends APIService {
|
|
constructor() {
|
|
super(API_BASE_URL);
|
|
}
|
|
|
|
async fetch(): Promise<TTimezones> {
|
|
return this.get(`/api/timezones/`)
|
|
.then((response) => response?.data)
|
|
.catch((error) => {
|
|
throw error?.response?.data;
|
|
});
|
|
}
|
|
}
|
|
|
|
const timezoneService = new TimezoneService();
|
|
|
|
export default timezoneService;
|