Skip to content

Commit

Permalink
Made authenticationService available to template code
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisekelley committed Oct 8, 2021
1 parent 55972b4 commit 9a63d35
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion editor/src/app/case/components/case/case.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ export class CaseComponent implements AfterContentInit, OnDestroy {
private inputSelectedDate = moment().format('YYYY-MM-DD')
window:any
caseService: CaseService
authenticationService: AuthenticationService
issues:Array<Issue>
moment
groupId:string
Expand All @@ -39,12 +40,13 @@ export class CaseComponent implements AfterContentInit, OnDestroy {
caseService: CaseService,
private router: Router,
private ref: ChangeDetectorRef,
private authenticationService: AuthenticationService,
authenticationService: AuthenticationService,
private groupIssuesService:GroupIssuesService,
) {
ref.detach()
this.window = window
this.caseService = caseService
this.authenticationService = authenticationService
this.moment = moment
}

Expand Down

0 comments on commit 9a63d35

Please sign in to comment.