-
Notifications
You must be signed in to change notification settings - Fork 8.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implement Kibana Login Selector (#53010)
- Loading branch information
Showing
74 changed files
with
5,201 additions
and
1,390 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
/* | ||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one | ||
* or more contributor license agreements. Licensed under the Elastic License; | ||
* you may not use this file except in compliance with the Elastic License. | ||
*/ | ||
|
||
import { LoginLayout } from './licensing'; | ||
|
||
export interface LoginSelector { | ||
enabled: boolean; | ||
providers: Array<{ type: string; name: string; description?: string }>; | ||
} | ||
|
||
export interface LoginState { | ||
layout: LoginLayout; | ||
allowLogin: boolean; | ||
showLoginForm: boolean; | ||
requiresSecureConnection: boolean; | ||
selector: LoginSelector; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
113 changes: 108 additions & 5 deletions
113
x-pack/plugins/security/public/authentication/login/__snapshots__/login_page.test.tsx.snap
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
95 changes: 0 additions & 95 deletions
95
...entication/login/components/basic_login_form/__snapshots__/basic_login_form.test.tsx.snap
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.