mirror of
https://gitlab.com/comunic/comunicapiv3
synced 2025-06-21 00:45:18 +00:00
Can set language settings
This commit is contained in:
10
src/data/lang_settings.rs
Normal file
10
src/data/lang_settings.rs
Normal file
@ -0,0 +1,10 @@
|
||||
//! # Language settings
|
||||
//!
|
||||
//! @author Pierre Hubert
|
||||
|
||||
use crate::data::user::UserID;
|
||||
|
||||
pub struct LangSettings {
|
||||
pub id: UserID,
|
||||
pub lang: String,
|
||||
}
|
@ -30,4 +30,5 @@ pub mod new_account;
|
||||
pub mod account_export;
|
||||
pub mod user_like;
|
||||
pub mod survey_response;
|
||||
pub mod general_settings;
|
||||
pub mod general_settings;
|
||||
pub mod lang_settings;
|
Reference in New Issue
Block a user