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

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