diff options
Diffstat (limited to 'weed/pb/iam.proto')
| -rw-r--r-- | weed/pb/iam.proto | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/weed/pb/iam.proto b/weed/pb/iam.proto index 99bb65ef2..342063f8d 100644 --- a/weed/pb/iam.proto +++ b/weed/pb/iam.proto @@ -24,13 +24,13 @@ message Identity { repeated Credential credentials = 2; repeated string actions = 3; Account account = 4; + bool disabled = 5; // User status: false = enabled (default), true = disabled } message Credential { string access_key = 1; string secret_key = 2; - // uint64 expiration = 3; - // bool is_disabled = 4; + string status = 3; // Access key status: "Active" or "Inactive" } message Account { |
