TrestleAdmin/trestle

View on GitHub
sandbox/app/admin/components/alerts_admin.rb

Summary

Maintainability
A
0 mins
Test Coverage
Trestle.admin(:alerts, scope: Components) do
  menu do
    group :components do
      item :alerts, icon: "fas fa-exclamation-circle", priority: 1
    end
  end

  helper do
    def alert_message(html_class)
      <<-HTML.html_safe
        This custom alert has the <code>#{html_class}</code> class. This is the <a href="#">Link style</a>.
      HTML
    end
  end
end