Method: Calligraphy::Put#execute
- Defined in:
- lib/calligraphy/web_dav_request/put.rb
#execute ⇒ Object
Executes the WebDAV request for a particular resource.
7 8 9 10 11 12 13 14 |
# File 'lib/calligraphy/web_dav_request/put.rb', line 7 def execute return :locked if @resource.locked_to_user? @headers return :method_not_allowed if @resource.collection? @resource.write [:created, @resource.contents] end |