forked from devtron-labs/devtron
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
FEAT: call dex directly instead of proxying argocd (devtron-labs#922)
* local import working * authenticator debug * local tested * local tested * docker version upgrade * argo dependency import * removed filter * login proxy correction * user filter redirect * commited dev ssl setting * redirect url rewerite * password login tested * removed http only cookie * admin login password verified * local dev conf * removed serve tls * admin login acd deligate * path prefix url compatible * callback endpoint change * auth redirect reverted * refactor compiling * commited wiregen * auth related wiring extracted in seperate class * authenticator upgrade * middleware correcton * authenticator upgrade
- Loading branch information
Showing
892 changed files
with
98,477 additions
and
43,112 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
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
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,17 @@ | ||
package main | ||
|
||
import ( | ||
"github.com/devtron-labs/authenticator/client" | ||
"github.com/devtron-labs/authenticator/middleware" | ||
"github.com/google/wire" | ||
) | ||
|
||
// AuthWireSet: set of components used to initialise authentication with dex | ||
var AuthWireSet = wire.NewSet( | ||
wire.Value(client.LocalDevMode(false)), | ||
client.NewK8sClient, | ||
client.BuildDexConfig, | ||
client.GetSettings, | ||
middleware.NewSessionManager, | ||
middleware.NewUserLogin, | ||
) |
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
Oops, something went wrong.