mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
Add a options hash so that headers can be passed in to set acls.
This commit is contained in:
parent
053960129d
commit
e9553e6fc7
1 changed files with 2 additions and 1 deletions
|
@ -8,9 +8,10 @@ module Fog
|
|||
# ==== Parameters
|
||||
# * name<~String> - Name for container, should be < 256 bytes and must not contain '/'
|
||||
#
|
||||
def put_container(name)
|
||||
def put_container(name, options = {})
|
||||
response = request(
|
||||
:expects => [201, 202],
|
||||
:headers => options,
|
||||
:method => 'PUT',
|
||||
:path => URI.escape(name)
|
||||
)
|
||||
|
|
Loading…
Add table
Reference in a new issue