Basic auth with multiple users
Describe the feature request
Is it possible to add option for multiple users
security: basic: username1: "user1" password-bcrypt-base64: "xxxx" username2: "user2" password-bcrypt-base64: "xxxx"
Why do you personally want this feature to be implemented?
I have already added basic auth and me and my team is using it, I want to to share dashboard with another team and don't want to share credentials with them. Different user would be better approach
How long have you been using this project?
around 4 months
Additional information
No response
Not against the idea, but the configuration should be something like
security:
basic:
users:
- username: "abc"
password: "abc"
- username: "def"
password: "def"
Not against the idea, but the configuration should be something like
security: basic: users: - username: "abc" password: "abc" - username: "def" password: "def"
Yes, this approach also is good
Any estimate, when multiple user support could be released ?
I don't personally have a use for this feature right now, so I have no intention of implementing it myself.
You're more than welcome to implement it yourself, or wait until somebody else volunteers to implement it.