rvault/src/auth/token.rs
2024-04-28 13:54:24 +02:00

45 lines
687 B
Rust

use axum::Router;
pub fn token_auth_router() -> Router {
Router::new()
}
async fn get_accessors() {}
async fn post_create() {}
async fn post_create_orphan() {}
async fn post_create_role() {}
async fn get_lookup() {}
async fn post_lookup() {}
async fn get_lookup_self() {}
async fn post_lookup_self() {}
async fn post_renew() {}
async fn post_renew_accessor() {}
async fn post_renew_self() {}
async fn post_revoke() {}
async fn post_revoke_accessor() {}
async fn post_revoke_orphan() {}
async fn post_revoke_self() {}
async fn get_roles() {}
async fn get_role_by_name() {}
async fn post_role_by_name() {}
async fn delete_role_by_name() {}
async fn post_tidy() {}