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,