mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-11-12 01:11:24 +08:00
7 lines
240 B
JavaScript
7 lines
240 B
JavaScript
import { axiosInstance } from "./config";
|
|
import { ACTIVITIES_PATH } from "./endpoints";
|
|
|
|
export function getActivities(lastId = 0) {
|
|
const path = `${ACTIVITIES_PATH}?from=${lastId}`;
|
|
axiosInstance.get(path).then(({ data }) => data);
|
|
}
|