Class: Cobrato::Entities::Base

Inherits:
Object
  • Object
show all
Defined in:
lib/cobrato/entities/base.rb

Instance Method Summary collapse

Instance Method Details

#url(action) ⇒ Object



10
11
12
13
# File 'lib/cobrato/entities/base.rb', line 10

def url(action)
  link = _links.detect { |l| l["rel"].to_s == action.to_s } || {}
  link.fetch("href", "")
end