class Dock::Api::Anchors

Constants

NAMESPACE

Public Class Methods

create(attrs = {}) click to toggle source
# File lib/dock/api/endpoints/anchors.rb, line 17
def create(attrs = {})
  post(NAMESPACE, attrs)
end
find(id) click to toggle source
# File lib/dock/api/endpoints/anchors.rb, line 13
def find(id)
  get("#{NAMESPACE}/#{id}")
end
list() click to toggle source
# File lib/dock/api/endpoints/anchors.rb, line 9
def list
  get(NAMESPACE)
end
verify(attrs = {}) click to toggle source
# File lib/dock/api/endpoints/anchors.rb, line 21
def verify(attrs = {})
  post("#{NAMESPACE}/verify", attrs)
end