1
0
forked from PGL/Clyde

added reesearcher manager for secretary

This commit is contained in:
2024-04-21 20:07:21 +02:00
parent 76dcea186c
commit 608b6e4893
8 changed files with 258 additions and 10 deletions

View File

@ -14,4 +14,12 @@ export async function fetchStats(id){
export async function fetchResearch(id){
return restGet("/research/" +id)
}
export async function deleteResearcher(id){
return restDelete("/researcher/" + id)
}
export async function postResearcher(data){
return restPost("/researcher", data)
}