aboutsummaryrefslogtreecommitdiffstats
path: root/railties/generators/controller/templates/controller.rb
blob: da71b5f0570b3d34098338f8d91d125585956495 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
class <%= class_name %>Controller < ApplicationController
<% if options[:scaffold] -%>
  scaffold :<%= singular_name %>
<% end -%>
<% for action in actions -%>

  def <%= action %>
  end
<% end -%>
end