cda2659e69305d76aa774c1f7292ed44f9ec8f70
[feedcatcher.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