chore: make names more consistent

This commit is contained in:
monomarh
2025-11-24 00:07:26 +01:00
parent 49ae734c6a
commit 4e08ccd151
3 changed files with 4 additions and 4 deletions

View File

@@ -67,8 +67,8 @@ func (m *AuthenticateMiddleware) WithRedirectErrorMessage(message string) *Authe
return m
}
func (m *AuthenticateMiddleware) WithFullAccessOnly(readOnly bool) *AuthenticateMiddleware {
m.requireFullAccessKey = readOnly
func (m *AuthenticateMiddleware) WithFullAccessOnly(requireFullAccess bool) *AuthenticateMiddleware {
m.requireFullAccessKey = requireFullAccess
return m
}

View File

@@ -1,5 +1,5 @@
meta {
name: Authenticate (header, full access)
name: Authenticate (header, full access key)
type: http
seq: 7
}

View File

@@ -1,5 +1,5 @@
meta {
name: Authenticate (header, readonly)
name: Authenticate (header, readonly key)
type: http
seq: 8
}