alpha
Login
or
Join now
pds.dad
/
pds-gatekeeper
Star
0
Fork
3
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Microservice to bring 2FA to self hosted PDSes
Star
0
Fork
3
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
make the remember field optional
author
Will Andrews
committer
Tangled
date
8 months ago
(Oct 5, 2025, 4:41 PM UTC)
commit
3d3b821b
3d3b821be3a57544b67024353c43ba7f391a6ec1
parent
ad11a87e
ad11a87e88496cec6543b9c1db7b9e0ad9b69642
+2
-1
1 changed file
Expand all
Collapse all
Unified
Split
src
oauth_provider.rs
+2
-1
src/oauth_provider.rs
Reviewed
···
13
13
pub struct SignInRequest {
14
14
pub username: String,
15
15
pub password: String,
16
16
-
pub remember: bool,
16
16
+
#[serde(skip_serializing_if = "Option::is_none")]
17
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>,