mirror of
https://github.com/hay-kot/homebox.git
synced 2025-07-15 07:19:16 +00:00
api refactor / registration tests
This commit is contained in:
parent
a67316a889
commit
505099ee26
12 changed files with 120 additions and 33 deletions
11
frontend/lib/api/classes/group.ts
Normal file
11
frontend/lib/api/classes/group.ts
Normal file
|
@ -0,0 +1,11 @@
|
|||
import { BaseAPI, route } from "../base";
|
||||
import { GroupInvitation, GroupInvitationCreate } from "../types/data-contracts";
|
||||
|
||||
export class GroupApi extends BaseAPI {
|
||||
createInvitation(data: GroupInvitationCreate) {
|
||||
return this.http.post<GroupInvitationCreate, GroupInvitation>({
|
||||
url: route("/groups/invitations"),
|
||||
body: data,
|
||||
});
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue