class Poto::FileRepository::Proxy

Attributes

backend[R]

Public Class Methods

new(backend) click to toggle source
# File lib/poto/file_repository/proxy.rb, line 14
def initialize(backend)
  @backend = backend
end

Public Instance Methods

all() click to toggle source
# File lib/poto/file_repository/proxy.rb, line 22
def all
  backend.all(options)
end
url(id) click to toggle source
# File lib/poto/file_repository/proxy.rb, line 18
def url(id)
  backend.url(id)
end