Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Extract License service from CCR and Watcher into license_api_guard plugin in x-pack #95973

Merged
merged 20 commits into from
Apr 15, 2021
Merged
Changes from 1 commit
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
a66cff2
Restrict CCR license-checking to API requests and localize error mess…
cjcenizal Mar 31, 2021
394ff8a
Extract License service into es_ui_shared and consume it in CCR.
cjcenizal Apr 2, 2021
ff254aa
Consume License service in Watcher.
cjcenizal Apr 2, 2021
87c0a21
Add unit tests for License service.
cjcenizal Apr 2, 2021
5d1e3cf
Merge branch 'master' into bug/ccr-watcher-license-messages
cjcenizal Apr 5, 2021
7c34572
Fix i18n and TS errors. Refactor license test.
cjcenizal Apr 5, 2021
25bc327
Fix TS errors.
cjcenizal Apr 5, 2021
f6002cc
Fix more TS errors.
cjcenizal Apr 5, 2021
818f6da
Merge branch 'master' into bug/ccr-watcher-license-messages
cjcenizal Apr 9, 2021
7d8eba5
Merge branch 'master' into bug/ccr-watcher-license-messages
cjcenizal Apr 13, 2021
974f824
Move License service from esUiShared to licenseApiGuard plugin in x-p…
cjcenizal Apr 13, 2021
efd968e
Use httpServerMock and licensingMock helpers instead of hand-rolling …
cjcenizal Apr 14, 2021
066a69f
Merge branch 'master' into bug/ccr-watcher-license-messages
cjcenizal Apr 14, 2021
7448fb1
Fix i18n error.
cjcenizal Apr 14, 2021
48293ff
Fix tsconfig errors.
cjcenizal Apr 14, 2021
a0fe425
Add plugin to i18nrc.
cjcenizal Apr 14, 2021
5701904
Update plugin list docs.
cjcenizal Apr 15, 2021
0706a25
Merge branch 'master' into bug/ccr-watcher-license-messages
cjcenizal Apr 15, 2021
3add225
Make isEsSecurityEnabled a public method.
cjcenizal Apr 15, 2021
d54f85c
Use forbidden instead of customError.
cjcenizal Apr 15, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Make isEsSecurityEnabled a public method.
Co-authored-by: Alison Goryachev <alisonmllr20@gmail.com>
  • Loading branch information
cjcenizal and alisonelizabeth authored Apr 15, 2021

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
commit 3add225c443177d81673ea83567e7bfd414e700d
2 changes: 1 addition & 1 deletion x-pack/plugins/license_api_guard/server/license.ts
Original file line number Diff line number Diff line change
@@ -109,7 +109,7 @@ export class License {
}

// eslint-disable-next-line @typescript-eslint/explicit-member-accessibility
get isEsSecurityEnabled() {
public get isEsSecurityEnabled() {
return this._isEsSecurityEnabled;
}
}