feat(api): admin object read surface (paginated list + get, ViewInternal)

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-06-02 21:45:53 +02:00
parent 3dc621b6dd
commit 0055616099
7 changed files with 429 additions and 4 deletions
+2
View File
@@ -1,6 +1,7 @@
//! HTTP API: router, handlers, and OpenAPI document.
mod admin;
mod admin_objects;
mod health;
mod openapi;
mod public;
@@ -40,6 +41,7 @@ pub fn build_app(state: AppState) -> Router {
.merge(openapi::routes())
.merge(public::routes())
.merge(admin::routes())
.merge(admin_objects::routes())
.layer(session_layer)
.with_state(state)
}