()
| 28 | } |
| 29 | |
| 30 | func accessDeniedError() *apiError { |
| 31 | return &apiError{http.StatusForbidden, serverapi.ErrorAccessDenied, "access is denied"} |
| 32 | } |
| 33 | |
| 34 | func repositoryNotWritableError() *apiError { |
| 35 | return internalServerError(errors.New("repository is not writable")) |
no outgoing calls
no test coverage detected