1
0
mirror of https://gitlab.com/comunic/comunicapiv3 synced 2025-01-30 22:13:01 +00:00
comunicapiv3/src/helpers/background_image_helper.rs

11 lines
291 B
Rust

//! # 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")
}