We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1ae8ef8 commit 5052df1Copy full SHA for 5052df1
server/src/handlers/http/about.rs
@@ -45,6 +45,7 @@ pub async fn about() -> Json<serde_json::Value> {
45
let store = CONFIG.storage().get_endpoint();
46
let is_llm_active = &CONFIG.parseable.open_ai_key.is_some();
47
let llm_provider = is_llm_active.then_some("OpenAI");
48
+ let is_oidc_active = CONFIG.parseable.openid.is_some();
49
let ui_version = option_env!("UI_VERSION").unwrap_or("development");
50
51
Json(json!({
@@ -56,6 +57,7 @@ pub async fn about() -> Json<serde_json::Value> {
56
57
"latestVersion": latest_release,
58
"llmActive": is_llm_active,
59
"llmProvider": llm_provider,
60
+ "oidcActive": is_oidc_active,
61
"license": "AGPL-3.0-only",
62
"mode": mode,
63
"staging": staging,
0 commit comments