New option to enable local auth for everyone
This commit is contained in:
parent
ff5cefa7ac
commit
b572938283
3 changed files with 13 additions and 9 deletions
1
main.go
1
main.go
|
@ -62,6 +62,7 @@ func main() {
|
|||
flag.StringVar(&baseURL, "baseurl", baseURL, "URL prepended to each URL")
|
||||
flag.UintVar(¤tPromo, "current-promo", currentPromo, "Year of the current promotion")
|
||||
flag.UintVar(&OffsetQuestionTimer, "offset-question-timer", OffsetQuestionTimer, "Duration to wait before sending pause msg in direct mode (in milliseconds)")
|
||||
flag.BoolVar(&allowLocalAuth, "allow-local-auth", false, "Allow local authentication for all users (bypass OIDC).")
|
||||
flag.Var(&localAuthUsers, "local-auth-user", "Allow local authentication for this user (bypass OIDC).")
|
||||
flag.Parse()
|
||||
|
||||
|
|
Reference in a new issue