orientation/orientation

View on GitHub
app/helpers/open_search/descriptions_helper.rb

Summary

Maintainability
A
0 mins
Test Coverage
module OpenSearch
  module DescriptionsHelper
    def open_search_description_link_tag
      content_tag(
        :link,
        nil,
        rel: 'search',
        type: 'application/opensearchdescription+xml',
        title: ENV.fetch('APP_NAME', 'Orientation'),
        href: open_search_description_path
      )
    end
  end
end