http: GET /api/users (list)

This commit is contained in:
2026-05-05 09:34:11 +01:00
parent 57a13f0759
commit a985d45daa
4 changed files with 88 additions and 4 deletions
+1
View File
@@ -251,6 +251,7 @@ func (s *Server) routes(r chi.Router) {
r.Group(func(r chi.Router) {
r.Use(s.requireRole(store.RoleAdmin))
r.Get("/api/users", s.handleAPIUsersList)
r.Post("/api/notifications/{id}/test", s.handleAPINotificationTest)
if s.deps.UI != nil {