1
0
mirror of https://gitlab.com/comunic/comunicapiv2 synced 2025-11-01 18:14:03 +00:00

Ready to implement comments

This commit is contained in:
2020-01-03 17:01:09 +01:00
parent 90d81c1d7a
commit 5a45096fa6
4 changed files with 26 additions and 2 deletions

View File

@@ -133,8 +133,12 @@ export class Post implements PostBuilder {
}
}
get isUserPage() : boolean {
return this.kindPage == PostPageKind.PAGE_KIND_USER;
}
get userPageID() : number {
return this.kindPage == PostPageKind.PAGE_KIND_USER ? this.pageID : 0
return this.isUserPage ? this.pageID : 0
}
get groupID() : number {