summaryrefslogtreecommitdiffstats
path: root/services/auth/reverseproxy.go
diff options
context:
space:
mode:
authorKN4CK3R <admin@oldschoolhack.me>2023-09-05 17:58:30 +0200
committerGitHub <noreply@github.com>2023-09-05 15:58:30 +0000
commit0eebeeec9045c759d005ab0ba87f3275da7c627d (patch)
treea8ca74d22821ff8002781cf9d5c21ebaa0001010 /services/auth/reverseproxy.go
parenta99b96cbcd10e4cad3194c142a0fffe371959455 (diff)
downloadgitea-0eebeeec9045c759d005ab0ba87f3275da7c627d.tar.gz
gitea-0eebeeec9045c759d005ab0ba87f3275da7c627d.zip
Remove `Named` interface (#26913)
`Named` is implemented by every `Method` and future implementations should implement the method too.
Diffstat (limited to 'services/auth/reverseproxy.go')
-rw-r--r--services/auth/reverseproxy.go1
1 files changed, 0 insertions, 1 deletions
diff --git a/services/auth/reverseproxy.go b/services/auth/reverseproxy.go
index 3574e660b8..62e60ccdc1 100644
--- a/services/auth/reverseproxy.go
+++ b/services/auth/reverseproxy.go
@@ -20,7 +20,6 @@ import (
// Ensure the struct implements the interface.
var (
_ Method = &ReverseProxy{}
- _ Named = &ReverseProxy{}
)
// ReverseProxyMethodName is the constant name of the ReverseProxy authentication method