An endpoint is used as source to fetch objects
6 7 8 9 10 11
# 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