aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails/generators/rails/plugin/templates/app/controllers/%namespaced_name%/application_controller.rb.tt
blob: abbacd9bec32beab04023569f4fe69736aba1689 (plain) (blame)
1
2
3
4
5
6
<%= wrap_in_modules <<-rb.strip_heredoc
  class ApplicationController < ActionController::#{api? ? "API" : "Base"}
    #{ api? ? '# ' : '' }protect_from_forgery with: :exception
  end
rb
%>