join #19

Merged
amaliadwiy merged 222 commits from join into v1 2026-02-09 11:18:03 +08:00
201 changed files with 4226 additions and 1411 deletions
Showing only changes of commit 8d6a0d3981 - Show all commits

View File

@@ -234,7 +234,7 @@ export const apiGetDivisionGroup = async ({ user }: { user: string }) => {
};
export const apiCreateAnnouncement = async ({ data }: { data: { title: string, desc: string, user: string, groups: any[] } }) => {
const response = await api.post(`/mobile/announcement/`, data)
const response = await api.post(`/mobile/announcement`, data)
return response.data;
};