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
291 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;
2020-06-25 10:08:34 +02:00
pub fn get_url(_user_id: &UserID) -> String {
2020-06-01 09:49:48 +02:00
user_data_url("imgfond/0.jpg")
}