Skip to content

Add oidc active to about response #546

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 1 commit into from
Oct 30, 2023
Merged
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
2 changes: 2 additions & 0 deletions server/src/handlers/http/about.rs
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ pub async fn about() -> Json<serde_json::Value> {
let store = CONFIG.storage().get_endpoint();
let is_llm_active = &CONFIG.parseable.open_ai_key.is_some();
let llm_provider = is_llm_active.then_some("OpenAI");
let is_oidc_active = CONFIG.parseable.openid.is_some();
let ui_version = option_env!("UI_VERSION").unwrap_or("development");

Json(json!({
Expand All @@ -56,6 +57,7 @@ pub async fn about() -> Json<serde_json::Value> {
"latestVersion": latest_release,
"llmActive": is_llm_active,
"llmProvider": llm_provider,
"oidcActive": is_oidc_active,
"license": "AGPL-3.0-only",
"mode": mode,
"staging": staging,
Expand Down