forked from forgejo/forgejo
Disable add key button if SSH is disabled (#2873)
This commit is contained in:
parent
1f7aab6e19
commit
420fc8efc2
8 changed files with 39 additions and 8 deletions
|
@ -106,7 +106,9 @@ func GetDeployKey(ctx *context.APIContext) {
|
|||
|
||||
// HandleCheckKeyStringError handle check key error
|
||||
func HandleCheckKeyStringError(ctx *context.APIContext, err error) {
|
||||
if models.IsErrKeyUnableVerify(err) {
|
||||
if models.IsErrSSHDisabled(err) {
|
||||
ctx.Error(422, "", "SSH is disabled")
|
||||
} else if models.IsErrKeyUnableVerify(err) {
|
||||
ctx.Error(422, "", "Unable to verify key content")
|
||||
} else {
|
||||
ctx.Error(422, "", fmt.Errorf("Invalid key content: %v", err))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue