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

11 lines
290 B
Rust
Raw Normal View History

2020-06-01 09:49:48 +02:00
//! # 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")
}