Expose authc on public start contract#98307
Conversation
| return { navControlService: this.navControlService.start({ core }) }; | ||
| return { | ||
| navControlService: this.navControlService.start({ core }), | ||
| authc: this.authc as AuthenticationServiceStart, |
There was a problem hiding this comment.
An alternative is to give the authorization service a real start lifecycle method so that it can expose these functions itself.
At this point, we have no need for a real start lifecycle, so this is the easier approach.
💚 Build SucceededMetrics [docs]Page load bundle
History
To update your PR or re-run it, just comment with: |
|
Pinging @elastic/kibana-security (Team:Security) |
jportner
left a comment
There was a problem hiding this comment.
I see this and the linked PR are labeled with v7.13.0, it looks like that's intentional but I just wanted to point it out before the backport happens in case it wasn't!
Yes, this is an intentional backport to |
* Expose authc on public start contract * fix mock
* Expose authc on public start contract * fix mock
Summary
Exposes the security plugins
authcservice on the public start contract.Requested via #98264 (review)