mirror of
https://gitlab.com/comunic/comunicapiv2
synced 2024-11-25 23:09:22 +00:00
16 lines
332 B
TypeScript
16 lines
332 B
TypeScript
import { pathUserData } from "../utils/UserDataUtils";
|
|
|
|
/**
|
|
* Legacy background image helper
|
|
*
|
|
* @author Pierre HUBERT
|
|
*/
|
|
|
|
export class BackgroundImageHelper {
|
|
|
|
public static GetURL(userID: number) : string {
|
|
// Currently, it is not planned to integrate background image anymore
|
|
return pathUserData("imgfond/0.jpg");
|
|
}
|
|
|
|
} |