rafaels88/pinfluence

View on GitHub
apps/web/views/application_layout.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Web
  module Views
    class ApplicationLayout
      include Web::Layout

      def production?
        Hanami.env == 'production'
      end

      def gmaps_tag; end

      def api_url; end
    end
  end
end