class DHS::Endpoint

An endpoint is used as source to fetch objects

Public Class Methods

for_url(url) click to toggle source
# File lib/dhs/endpoint.rb, line 6
def self.for_url(url)
  template, record = DHS::Record::Endpoints.all.dup.detect do |template, _record|
    DHC::Endpoint.match?(url, template)
  end
  record&.endpoints&.detect { |endpoint| endpoint.url == template }
end