mirror of
https://github.com/steveiliop56/tinyauth.git
synced 2025-10-28 12:45:47 +00:00
feat: add support for logging in to a basic auth protected app (#203)
This commit is contained in:
@@ -99,11 +99,18 @@ type OAuthLabels struct {
|
||||
Groups string
|
||||
}
|
||||
|
||||
// Basic auth labels for a tinyauth protected container
|
||||
type BasicLabels struct {
|
||||
User string
|
||||
Password string
|
||||
}
|
||||
|
||||
// Labels is a struct that contains the labels for a tinyauth protected container
|
||||
type Labels struct {
|
||||
Users string
|
||||
Allowed string
|
||||
Headers []string
|
||||
Domain string
|
||||
Basic BasicLabels
|
||||
OAuth OAuthLabels
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user