mirror of
https://gitlab.com/comunic/comunicapiv2
synced 2024-11-22 21:39:22 +00:00
20 lines
454 B
TypeScript
20 lines
454 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");
|
|
}
|
|
|
|
public static async Delete(userID: number) {
|
|
// Currently, it is not planned to integrate background image anymore
|
|
}
|
|
|
|
} |