Skip to content

Commit

Permalink
Added capability flags to services
Browse files Browse the repository at this point in the history
  • Loading branch information
geetanshjuneja committed Jan 13, 2025
1 parent 6d481ce commit 1380be2
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions core/src/services/azblob/backend.rs
Original file line number Diff line number Diff line change
Expand Up @@ -515,6 +515,8 @@ impl Access for AzblobBackend {
read_with_if_match: true,
read_with_if_none_match: true,
read_with_override_content_disposition: true,
read_with_if_modified_since: true,
read_with_if_unmodified_since: true,

write: true,
write_can_append: true,
Expand Down
2 changes: 2 additions & 0 deletions core/src/services/gcs/backend.rs
Original file line number Diff line number Diff line change
Expand Up @@ -369,6 +369,8 @@ impl Access for GcsBackend {

read_with_if_match: true,
read_with_if_none_match: true,
read_with_if_modified_since: true,
read_with_if_unmodified_since: true,

write: true,
write_can_empty: true,
Expand Down
2 changes: 2 additions & 0 deletions core/src/services/oss/backend.rs
Original file line number Diff line number Diff line change
Expand Up @@ -459,6 +459,8 @@ impl Access for OssBackend {

read_with_if_match: true,
read_with_if_none_match: true,
read_with_if_modified_since: true,
read_with_if_unmodified_since: true,

write: true,
write_can_empty: true,
Expand Down

0 comments on commit 1380be2

Please sign in to comment.