Microservice to bring 2FA to self hosted PDSes
92
fork

Configure Feed

Select the types of activity you want to include in your feed.

make the remember field optional

authored by

Will Andrews and committed by
Tangled
3d3b821b ad11a87e

+2 -1
+2 -1
src/oauth_provider.rs
··· 13 13 pub struct SignInRequest { 14 14 pub username: String, 15 15 pub password: String, 16 - pub remember: bool, 16 + #[serde(skip_serializing_if = "Option::is_none")] 17 + pub remember: Option<bool>, 17 18 pub locale: String, 18 19 #[serde(skip_serializing_if = "Option::is_none", rename = "emailOtp")] 19 20 pub email_otp: Option<String>,