Functional tests now work properly, bearing in mind whether a user is logged in or...
[depot.git] / vendor / rails / railties / lib / rails_generator / generators / components / controller / templates / controller.rb
1 class <%= class_name %>Controller < ApplicationController
2 <% for action in actions -%>
3 def <%= action %>
4 end
5
6 <% end -%>
7 end