♻️ refactor: Refactor API endpoints to use dynamic API prefix from environment variables
- Updated all service files to replace hardcoded API paths with `${import.meta.env.VITE_API_PREFIX}` for better configurability.
- Ensured consistency across user, common, and gateway services by applying the new API prefix format.
- Removed unnecessary comments and maintained ESLint disable directives where applicable.
This commit is contained in:
@@ -1,4 +1,3 @@
|
||||
//
|
||||
/* eslint-disable */
|
||||
import request from "@workspace/ui/lib/request";
|
||||
|
||||
@@ -9,7 +8,7 @@ export async function queryDocumentDetail(
|
||||
options?: { [key: string]: any }
|
||||
) {
|
||||
return request<API.Response & { data?: API.Document }>(
|
||||
"/api/v1/public/document/detail",
|
||||
`${import.meta.env.VITE_API_PREFIX}/v1/public/document/detail`,
|
||||
{
|
||||
method: "GET",
|
||||
params: {
|
||||
@@ -23,7 +22,7 @@ export async function queryDocumentDetail(
|
||||
/** Get document list GET /v1/public/document/list */
|
||||
export async function queryDocumentList(options?: { [key: string]: any }) {
|
||||
return request<API.Response & { data?: API.QueryDocumentListResponse }>(
|
||||
"/api/v1/public/document/list",
|
||||
`${import.meta.env.VITE_API_PREFIX}/v1/public/document/list`,
|
||||
{
|
||||
method: "GET",
|
||||
...(options || {}),
|
||||
|
||||
Reference in New Issue
Block a user