1
0
mirror of https://gitlab.com/comunic/comunicapiv2 synced 2025-06-30 13:23:29 +00:00
Files
comunicapiv2/src/helpers/BackgroundImageHelper.ts

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
}
}