feat(phase5): scheduling/availability - DB, API, UI in server settings

This commit is contained in:
2026-06-30 11:29:43 -04:00
parent 74d2153ffa
commit 6db4e3cc2d
6 changed files with 296 additions and 8 deletions
+3
View File
@@ -191,6 +191,9 @@ func main() {
r.Route("/channels", func(r chi.Router) {
channel.NewHandler(database.DB, permissionsChecker).RegisterRoutes(r)
})
// Availability
r.Get("/availability", authHandler.GetServerAvailability)
})
})