Can disable auth
This commit is contained in:
@ -11,6 +11,7 @@ pub async fn root_index() -> impl Responder {
|
||||
|
||||
#[derive(serde::Serialize)]
|
||||
struct StaticConfig {
|
||||
auth_disabled: bool,
|
||||
local_auth_enabled: bool,
|
||||
oidc_auth_enabled: bool,
|
||||
iso_mimetypes: &'static [&'static str],
|
||||
@ -19,6 +20,7 @@ struct StaticConfig {
|
||||
|
||||
pub async fn static_config(local_auth: LocalAuthEnabled) -> impl Responder {
|
||||
HttpResponse::Ok().json(StaticConfig {
|
||||
auth_disabled: AppConfig::get().unsecure_disable_auth,
|
||||
local_auth_enabled: *local_auth,
|
||||
oidc_auth_enabled: !AppConfig::get().disable_oidc,
|
||||
iso_mimetypes: &constants::ALLOWED_ISO_MIME_TYPES,
|
||||
|
Reference in New Issue
Block a user