2018-02-07 19:02:18 +01:00
|
|
|
package config
|
|
|
|
|
2018-06-22 10:29:47 +02:00
|
|
|
// Sharing settings
|
|
|
|
type Sharing struct {
|
2020-11-13 18:42:10 +01:00
|
|
|
UploadResults bool `json:"upload_results"`
|
2018-06-22 10:29:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Advanced settings
|
2021-11-05 13:26:08 +01:00
|
|
|
type Advanced struct{}
|
2018-06-22 10:29:47 +02:00
|
|
|
|
2019-11-14 17:58:31 +01:00
|
|
|
// Nettests related settings
|
|
|
|
type Nettests struct {
|
2021-03-30 11:16:12 +02:00
|
|
|
WebsitesMaxRuntime int64 `json:"websites_max_runtime"`
|
2020-06-04 11:19:38 +02:00
|
|
|
WebsitesURLLimit int64 `json:"websites_url_limit"`
|
2020-02-12 15:07:19 +01:00
|
|
|
WebsitesEnabledCategoryCodes []string `json:"websites_enabled_category_codes"`
|
2018-06-22 10:29:47 +02:00
|
|
|
}
|