c388803b68
extend Test Update GetGlobalSettings functions Co-authored-by: 6543 <6543@obermui.de> Reviewed-on: https://gitea.com/gitea/go-sdk/pulls/376 Reviewed-by: techknowlogick <techknowlogick@gitea.io> Reviewed-by: Gary Kim <gary@garykim.dev>
34 lines
1.3 KiB
Go
34 lines
1.3 KiB
Go
// Copyright 2020 The Gitea Authors. All rights reserved.
|
|
// Use of this source code is governed by a MIT-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package gitea
|
|
|
|
// GlobalUISettings represent the global ui settings of a gitea instance witch is exposed by API
|
|
type GlobalUISettings struct {
|
|
AllowedReactions []string `json:"allowed_reactions"`
|
|
}
|
|
|
|
// GlobalRepoSettings represent the global repository settings of a gitea instance witch is exposed by API
|
|
type GlobalRepoSettings struct {
|
|
MirrorsDisabled bool `json:"mirrors_disabled"`
|
|
HTTPGitDisabled bool `json:"http_git_disabled"`
|
|
}
|
|
|
|
// GetGlobalUISettings get global ui settings witch are exposed by API
|
|
func (c *Client) GetGlobalUISettings() (settings *GlobalUISettings, err error) {
|
|
if err := c.CheckServerVersionConstraint(">=1.13.0"); err != nil {
|
|
return nil, err
|
|
}
|
|
conf := new(GlobalUISettings)
|
|
return conf, c.getParsedResponse("GET", "/settings/ui", jsonHeader, nil, &conf)
|
|
}
|
|
|
|
// GetGlobalRepoSettings get global repository settings witch are exposed by API
|
|
func (c *Client) GetGlobalRepoSettings() (settings *GlobalRepoSettings, err error) {
|
|
if err := c.CheckServerVersionConstraint(">=1.13.0"); err != nil {
|
|
return nil, err
|
|
}
|
|
conf := new(GlobalRepoSettings)
|
|
return conf, c.getParsedResponse("GET", "/settings/repository", jsonHeader, nil, &conf)
|
|
}
|