1
0
mirror of https://gitlab.com/comunic/comunicapiv2 synced 2025-06-20 08:35:17 +00:00

Return dummy background image & likes count

This commit is contained in:
2019-12-28 14:06:32 +01:00
parent 8ebe93523e
commit a22f339a17
2 changed files with 20 additions and 1 deletions

View File

@ -0,0 +1,16 @@
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");
}
}