1
0
mirror of https://gitlab.com/comunic/comunicapiv2 synced 2025-06-21 09:05:17 +00:00

Return more information about groups

This commit is contained in:
2019-12-24 19:15:12 +01:00
parent 0925b44492
commit f06f772420
2 changed files with 24 additions and 3 deletions

View File

@ -95,4 +95,12 @@ export class GroupInfo implements GroupInfoConstructor {
get logoURL() : string {
return pathUserData(this.logoPath, false);
}
get hasDescription() : boolean {
return this.description && true;
}
get hasURL() : boolean {
return this.url && true;
}
}