Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 5a5b45c

Browse files
committedDec 1, 2020
feat: local authentication
- introduce passport - add a passport local strategy for authentication - introduce Authentication interface to contain the multiple auth checks (authenticate, checkAuth, logout) - scram router module for authentication, logout, and auth check - no op for no auth - extend auth support to provide additional functions to all modules for checking auth, logging out Contributes-to: strimzi#106 Signed-off-by: Nic Townsend <[email protected]>
1 parent 2689890 commit 5a5b45c

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+1218
-287
lines changed
 

‎config/static.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,6 @@ const client: Config<Literal> = {
1919
const server: Config<Literal> = {
2020
defaultConfig: {
2121
configValue: {
22-
authentication: {
23-
strategy: 'none',
24-
},
2522
client: {
2623
configOverrides: {},
2724
transport: {},
@@ -40,6 +37,9 @@ const server: Config<Literal> = {
4037
contextRoot: '/',
4138
port: 9080,
4239
transport: {},
40+
authentication: {
41+
type: 'none',
42+
},
4343
},
4444
session: {
4545
name: 'strimzi-ui',

‎package-lock.json

+122
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)
Please sign in to comment.