Skip to content

initial pass at adding tags #579

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Jan 12, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions nexus/src/external_api/console_api.rs
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ pub struct LoginParams {
path = "/login",
// TODO: this should be unpublished, but for now it's convenient for the
// console to use the generated client for this request
tags = ["hidden"],
}]
pub async fn spoof_login(
rqctx: Arc<RequestContext<Arc<ServerContext>>>,
Expand Down Expand Up @@ -90,6 +91,7 @@ pub async fn spoof_login(
path = "/logout",
// TODO: this should be unpublished, but for now it's convenient for the
// console to use the generated client for this request
tags = ["hidden"],
}]
pub async fn logout(
rqctx: Arc<RequestContext<Arc<ServerContext>>>,
Expand Down Expand Up @@ -202,6 +204,7 @@ pub async fn login_redirect(
#[endpoint {
method = GET,
path = "/session/me",
tags = ["hidden"],
}]
pub async fn session_me(
rqctx: Arc<RequestContext<Arc<ServerContext>>>,
Expand Down
Loading