diff options
author | Quentin <quentin@deuxfleurs.fr> | 2020-12-12 17:00:31 +0100 |
---|---|---|
committer | Quentin <quentin@deuxfleurs.fr> | 2020-12-12 17:00:31 +0100 |
commit | e1ce2b228aaacd5984bf4e1b73a0a6c1276f78e5 (patch) | |
tree | d5a5b5038df8b3c0554b967e5d54f8d7f7659ea8 /src/garage/main.rs | |
parent | 1119d466e762b6fe11eb939811c4f24b27a0404f (diff) | |
download | garage-e1ce2b228aaacd5984bf4e1b73a0a6c1276f78e5.tar.gz garage-e1ce2b228aaacd5984bf4e1b73a0a6c1276f78e5.zip |
WIP table migration
Diffstat (limited to 'src/garage/main.rs')
-rw-r--r-- | src/garage/main.rs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/garage/main.rs b/src/garage/main.rs index 7996d1f9..d97ca3b8 100644 --- a/src/garage/main.rs +++ b/src/garage/main.rs @@ -150,12 +150,12 @@ pub enum BucketOperation { #[derive(Serialize, Deserialize, StructOpt, Debug)] pub struct WebsiteOpt { /// Create - #[structopt(long = "create")] - pub create: bool, + #[structopt(long = "allow")] + pub allow: bool, /// Delete - #[structopt(long = "delete")] - pub delete: bool, + #[structopt(long = "deny")] + pub deny: bool, } #[derive(Serialize, Deserialize, StructOpt, Debug)] |