21 lines
503 B
TypeScript
21 lines
503 B
TypeScript
|
|
import { PaginationRequest } from "@/types/globals";
|
||
|
|
import {
|
||
|
|
httpDeleteInterceptor,
|
||
|
|
httpGet,
|
||
|
|
httpPost,
|
||
|
|
httpPut,
|
||
|
|
} from "./http-config/axios-base-service";
|
||
|
|
|
||
|
|
export async function saveActivity(data: any, token?: string) {
|
||
|
|
const headers = token
|
||
|
|
? {
|
||
|
|
"content-type": "application/json",
|
||
|
|
Authorization: `Bearer ${token}`,
|
||
|
|
}
|
||
|
|
: {
|
||
|
|
"content-type": "application/json",
|
||
|
|
};
|
||
|
|
const pathUrl = `/activity-logs`;
|
||
|
|
return await httpPost(pathUrl, headers, data);
|
||
|
|
}
|