From a19447aed128ecadfcd938d6a80cd4951af1f4ce Mon Sep 17 00:00:00 2001 From: 6543 <6543@obermui.de> Date: Fri, 25 Dec 2020 09:59:32 +0000 Subject: migrate from com.* to alternatives (#14103) * remove github.com/unknwon/com from models * dont use "com.ToStr()" * replace "com.ToStr" with "fmt.Sprint" where its easy to do * more refactor * fix test * just "proxy" Copy func for now * as per @lunny --- models/oauth2_application.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'models/oauth2_application.go') diff --git a/models/oauth2_application.go b/models/oauth2_application.go index 1c7937685c..af4d280d0c 100644 --- a/models/oauth2_application.go +++ b/models/oauth2_application.go @@ -14,10 +14,10 @@ import ( "code.gitea.io/gitea/modules/secret" "code.gitea.io/gitea/modules/setting" "code.gitea.io/gitea/modules/timeutil" + "code.gitea.io/gitea/modules/util" "github.com/dgrijalva/jwt-go" uuid "github.com/google/uuid" - "github.com/unknwon/com" "golang.org/x/crypto/bcrypt" "xorm.io/xorm" ) @@ -62,7 +62,7 @@ func (app *OAuth2Application) LoadUser() (err error) { // ContainsRedirectURI checks if redirectURI is allowed for app func (app *OAuth2Application) ContainsRedirectURI(redirectURI string) bool { - return com.IsSliceContainsStr(app.RedirectURIs, redirectURI) + return util.IsStringInSlice(redirectURI, app.RedirectURIs, true) } // GenerateClientSecret will generate the client secret and returns the plaintext and saves the hash at the database -- cgit v1.2.3