- Switch gid and supplementary groups to user's when reading user's config - Only show users between UID_MIN and UID_MAX in /etc/login.defs - Open accountsservice icons with O_NOFOLLOW to explicitly disallow symlinks
13 lines
386 B
Rust
13 lines
386 B
Rust
// Copyright 2024 System76 <info@system76.com>
|
|
// SPDX-License-Identifier: GPL-3.0-only
|
|
|
|
use serde::{Deserialize, Serialize};
|
|
use std::num::NonZeroU32;
|
|
|
|
/// Per user state for Greeter.
|
|
#[derive(Debug, Clone, PartialEq, Deserialize, Serialize)]
|
|
pub struct UserState {
|
|
pub uid: NonZeroU32,
|
|
#[serde(skip_serializing_if = "Option::is_none")]
|
|
pub last_session: Option<String>,
|
|
}
|