aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails_generator/generators/components/web_service/templates/api_definition.rb
blob: 97d0b6086926cbdf7db49bb2870d20546aa0ff2b (plain) (blame)
1
2
3
4
5
class <%= class_name %>Api < ActionWebService::API::Base
<% for method_name in args -%>
  api_method :<%= method_name %>
<% end -%>
end