Files
calligraphy/lib/calligraphy/get.rb
2017-10-28 12:01:30 -05:00

13 lines
232 B
Ruby

module Calligraphy
class Get < WebDavRequest
def request(head: false)
if @resource.readable?
return :ok if head
return :ok, @resource.read
else
return :not_found
end
end
end
end