14812: Migrate previously missed config items
[arvados.git] / sdk / go / arvados / config.go
index d7e92e6ed98ca1edb0131391d2891f096aa1d9d8..3f71c6b44294c8d32884127e0861a2dff0799b2f 100644 (file)
@@ -96,7 +96,7 @@ type Cluster struct {
        Mail struct {
                MailchimpAPIKey                string
                MailchimpListID                string
-               SendUserSetupNotificationEmail string
+               SendUserSetupNotificationEmail bool
                IssueReporterEmailFrom         string
                IssueReporterEmailTo           string
                SupportEmailAddress            string
@@ -113,6 +113,7 @@ type Cluster struct {
                Insecure    bool
        }
        Users struct {
+               AnonymousUserToken                    string
                AdminNotifierEmailFrom                string
                AutoAdminFirstUser                    bool
                AutoAdminUserWithEmail                string
@@ -139,26 +140,31 @@ type Cluster struct {
                EnablePublicProjectsPage         bool
                FileViewersConfigURL             string
                LogViewerMaxBytes                ByteSize
-               MultiSiteSearch                  bool
+               MultiSiteSearch                  string
+               ProfilingEnabled                 bool
                Repositories                     bool
                RepositoryCache                  string
                RunningJobLogRecordsToFetch      int
                SecretKeyBase                    string
-               SecretToken                      string
                ShowRecentCollectionsOnDashboard bool
                ShowUserAgreementInline          bool
                ShowUserNotifications            bool
                SiteName                         string
                Theme                            string
+               TrustAllContent                  bool
                UserProfileFormFields            map[string]struct {
                        Type                 string
                        FormFieldTitle       string
                        FormFieldDescription string
                        Required             bool
+                       Position             int
+                       Options              map[string]struct{}
                }
                UserProfileFormMessage string
                VocabularyURL          string
        }
+
+       EnableBetaController14287 bool
 }
 
 type Services struct {