Skip to content

Commit

Permalink
fix default acl value
Browse files Browse the repository at this point in the history
  • Loading branch information
bujnlc8 committed Sep 16, 2024
1 parent 375415e commit 8b9a172
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/acl.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ pub enum ObjectAcl {
impl From<ObjectAcl> for String {
fn from(val: ObjectAcl) -> Self {
match val {
ObjectAcl::DEFAULT => String::from("value"),
ObjectAcl::DEFAULT => String::from("default"),
ObjectAcl::PRIVATE => String::from("private"),
ObjectAcl::PublicRead => String::from("public-read"),
ObjectAcl::BucketOwnerRead => String::from("bucket-owner-read"),
Expand Down

0 comments on commit 8b9a172

Please sign in to comment.