From e7c18b3fdfa3616ab75d5b5525a46ba708f0782e Mon Sep 17 00:00:00 2001 From: Niggl Date: Fri, 10 Jul 2020 22:27:43 +0200 Subject: [PATCH] Comments for the constructor of the userstory inner table --- .../userstory-inner-table.component.ts | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/app/components/tabels/userstory-inner-table/userstory-inner-table.component.ts b/src/app/components/tabels/userstory-inner-table/userstory-inner-table.component.ts index 2a8c22f..01e6b05 100644 --- a/src/app/components/tabels/userstory-inner-table/userstory-inner-table.component.ts +++ b/src/app/components/tabels/userstory-inner-table/userstory-inner-table.component.ts @@ -27,6 +27,13 @@ export class UserstoryInnerTableComponent extends TableComponentBase< @Input() public storys: ScrumUserstory[] = []; + /** + * Constructor that establishes the initial backend communication. + * It also sets the tabel's items according to the "storys" input (needed for the dashboard). + * @param backendService + * @param modalService + * @param route + */ constructor( private backendService: BackendService, private modalService: NgbModal,