1
0
mirror of https://gitlab.com/comunic/comunicapiv3 synced 2025-06-21 17:05:16 +00:00

Add legacy background image

This commit is contained in:
2020-06-01 09:49:48 +02:00
parent 56cf021f4a
commit 9d4b60f0ff
3 changed files with 18 additions and 4 deletions

View File

@ -0,0 +1,11 @@
//! # Background Image Helper
//!
//! This is a legacy module. Background image are not
//! Planned to be implemented anymore
use crate::data::user::UserID;
use crate::utils::user_data_utils::user_data_url;
pub fn get_url(_user_id: UserID) -> String {
user_data_url("imgfond/0.jpg")
}

View File

@ -4,4 +4,5 @@ pub mod api_helper;
pub mod account_helper;
pub mod user_helper;
pub mod friends_helper;
pub mod custom_emojies_helper;
pub mod custom_emojies_helper;
pub mod background_image_helper;