-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed users unlock in ACL LOAD command handler
- Loading branch information
1 parent
c634b1b
commit a9c11ad
Showing
6 changed files
with
1,301 additions
and
1,201 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
[ | ||
{ | ||
"Username": "user1", | ||
"Enabled": true, | ||
"NoPassword": false, | ||
"NoKeys": false, | ||
"Passwords": [ | ||
{ | ||
"PasswordType": "plaintext", | ||
"PasswordValue": "password1" | ||
}, | ||
{ | ||
"PasswordType": "SHA256", | ||
"PasswordValue": "6cf615d5bcaac778352a8f1f3360d23f02f34ec182e259897fd6ce485d7870d4" | ||
} | ||
], | ||
"IncludedCategories": [ | ||
"*" | ||
], | ||
"ExcludedCategories": [], | ||
"IncludedReadKeys": [ | ||
"*" | ||
], | ||
"IncludedWriteKeys": [ | ||
"*" | ||
], | ||
"IncludedPubSubChannels": [ | ||
"*" | ||
], | ||
"ExcludedPubSubChannels": [] | ||
}, | ||
{ | ||
"Username": "user2", | ||
"Enabled": true, | ||
"NoPassword": false, | ||
"NoKeys": false, | ||
"Passwords": [ | ||
{ | ||
"PasswordType": "plaintext", | ||
"PasswordValue": "password4" | ||
}, | ||
{ | ||
"PasswordType": "SHA256", | ||
"PasswordValue": "8b2c86ea9cf2ea4eb517fd1e06b74f399e7fec0fef92e3b482a6cf2e2b092023" | ||
} | ||
], | ||
"IncludedCategories": [ | ||
"hash", | ||
"set", | ||
"sortedset", | ||
"list", | ||
"generic" | ||
], | ||
"ExcludedCategories": [], | ||
"IncludedReadKeys": [ | ||
"*" | ||
], | ||
"IncludedWriteKeys": [ | ||
"*" | ||
], | ||
"IncludedPubSubChannels": [ | ||
"user:channel:*" | ||
], | ||
"ExcludedPubSubChannels": [ | ||
"admin:channel:*" | ||
] | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
- Username: "user1" | ||
Enabled: true | ||
NoPassword: false | ||
NoKeys: false | ||
Passwords: | ||
- PasswordType: "plaintext" | ||
PasswordValue: "password1" | ||
- PasswordType: "SHA256" | ||
PasswordValue: "6cf615d5bcaac778352a8f1f3360d23f02f34ec182e259897fd6ce485d7870d4" | ||
IncludedCategories: ["*"] | ||
ExcludedCategories: [] | ||
IncludedReadKeys: ["*"] | ||
IncludedWriteKeys: ["*"] | ||
IncludedPubSubChannels: ["*"] | ||
ExcludedPubSubChannels: [] | ||
|
||
- Username: "user2" | ||
Enabled: true | ||
NoPassword: false | ||
NoKeys: false | ||
Passwords: | ||
- PasswordType: "plaintext" | ||
PasswordValue: "password4" | ||
- PasswordType: "SHA256" | ||
PasswordValue: "8b2c86ea9cf2ea4eb517fd1e06b74f399e7fec0fef92e3b482a6cf2e2b092023" | ||
IncludedCategories: ["hash", "set", "sortedset", "list", "generic"] | ||
ExcludedCategories: [] | ||
IncludedReadKeys: ["*"] | ||
IncludedWriteKeys: ["*"] | ||
IncludedPubSubChannels: ["user:channel:*"] | ||
ExcludedPubSubChannels: ["admin:channel:*"] |