mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2025-04-24 16:46:25 +00:00
- Massive replacement of changing `code.gitea.io/gitea` to `forgejo.org`. - Resolves forgejo/discussions#258 Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/7337 Reviewed-by: Earl Warren <earl-warren@noreply.codeberg.org> Reviewed-by: Michael Kriese <michael.kriese@gmx.de> Reviewed-by: Beowulf <beowulf@beocode.eu> Reviewed-by: Panagiotis "Ivory" Vasilopoulos <git@n0toose.net> Co-authored-by: Gusted <postmaster@gusted.xyz> Co-committed-by: Gusted <postmaster@gusted.xyz>
23 lines
570 B
Go
23 lines
570 B
Go
// Copyright 2023, 2024 The Forgejo Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package forgefed
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"forgejo.org/modules/validation"
|
|
)
|
|
|
|
func validateAndCheckError(subject validation.Validateable, expectedError string) *string {
|
|
errors := subject.Validate()
|
|
err := errors[0]
|
|
if len(errors) < 1 {
|
|
val := "Validation error should have been returned, but was not."
|
|
return &val
|
|
} else if err != expectedError {
|
|
val := fmt.Sprintf("Validation error should be [%v] but was: %v\n", expectedError, err)
|
|
return &val
|
|
}
|
|
return nil
|
|
}
|