mirror of
https://github.com/lldap/lldap.git
synced 2026-07-25 17:58:44 +00:00
app, server: Add an endpoint to fetch the frontend settings
This commit is contained in:
committed by
nitnelave
parent
ba93533790
commit
5afcdbda65
@@ -0,0 +1,12 @@
|
||||
[package]
|
||||
authors = ["Valentin Tolmer <valentin@tolmer.fr"]
|
||||
description = "Frontend options for LLDAP"
|
||||
edition = "2024"
|
||||
homepage = "https://github.com/lldap/lldap"
|
||||
license = "GPL-3.0-only"
|
||||
name = "lldap_frontend_options"
|
||||
repository = "https://github.com/lldap/lldap"
|
||||
version = "0.1.0"
|
||||
|
||||
[dependencies.serde]
|
||||
workspace = true
|
||||
@@ -0,0 +1,6 @@
|
||||
use serde::{Deserialize, Serialize};
|
||||
|
||||
#[derive(Serialize, Deserialize)]
|
||||
pub struct Options {
|
||||
pub password_reset_enabled: bool,
|
||||
}
|
||||
Reference in New Issue
Block a user