From e4fe0c5d501fb566bb595373babfe41bc67926c8 Mon Sep 17 00:00:00 2001 From: Florent Revest Date: Wed, 2 Oct 2024 18:41:41 +0200 Subject: dashboard: allow multiple allowed authentication domains In some situations, it could be useful to share access to the dashboard to multiple authentication domains. The current GlobalConfig format doesn't really allow it so this deprecates the existing field and add a new slice of allowed authentication domains. --- docs/setup_syzbot.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs') diff --git a/docs/setup_syzbot.md b/docs/setup_syzbot.md index b6c05b00b..289ea0e22 100644 --- a/docs/setup_syzbot.md +++ b/docs/setup_syzbot.md @@ -247,7 +247,7 @@ func init() { } var prodConfig = &GlobalConfig{ AccessLevel: AccessPublic, - AuthDomain: "@google.com", + AuthDomains: []string{"@google.com"}, CoverPath: "https://storage.googleapis.com/syzkaller/cover/", Clients: map[string]string{ "$CI_HOSTNAME": "$CI_KEY", -- cgit mrf-deployment