Browse Source

Rename Duo Labels In Admin

pull/5491/head
Roman Ratiner 2 months ago
parent
commit
27665b1f53
  1. 4
      src/api/core/two_factor/duo.rs
  2. 4
      src/config.rs

4
src/api/core/two_factor/duo.rs

@ -26,8 +26,8 @@ pub fn routes() -> Vec<Route> {
#[derive(Serialize, Deserialize)]
struct DuoData {
host: String, // Duo API hostname
ik: String, // integration key
sk: String, // secret key
ik: String, // client id
sk: String, // client secret
}
impl DuoData {

4
src/config.rs

@ -670,9 +670,9 @@ make_config! {
_enable_duo: bool, true, def, true;
/// Attempt to use deprecated iframe-based Traditional Prompt (Duo WebSDK 2)
duo_use_iframe: bool, false, def, false;
/// Integration Key
/// Client Id
duo_ikey: String, true, option;
/// Secret Key
/// Client Secret
duo_skey: Pass, true, option;
/// Host
duo_host: String, true, option;

Loading…
Cancel
Save