More work on the new people search

This commit is contained in:
William Bouzourène 2025-03-25 21:55:54 +01:00
parent 9cd17bd8e6
commit 9a41a5f8aa
Signed by: bouzoure
SSH key fingerprint: SHA256:19MbXpLua4rUtk8tunMesD8KUKb91LXLHg8E/qTooww
6 changed files with 337 additions and 121 deletions

View file

@ -167,6 +167,9 @@ func main() {
app.Post("/contacts/:id<int;min(0)>/restore", controllers.ContactRestore)
app.Post("/contacts/:id<int;min(0)>/purge", controllers.ContactPurge)
// Fields
app.Get("/fields/:id<int;min(0)>", controllers.FieldJSON)
// Account manage
app.Get("/account/manage", controllers.AccountManage)
app.Post("/account/manage", controllers.AccountManage)