ユーザーコントローラーでこれらのアクションを取得しました
class UsersController < ApplicationController
def index #default action
...
end
def new #default action
...
end
def another_new
...
end
def create
...
end
def another_create
...
end
end
/users/another_new
ある種のリンクから呼び出して作成できるようにし
:method => :another_create
たい/users/another_new
次のconfig/routes.rbを取得しました
get '/users/another_new' :to => 'users#another_new'
resources :users
私の質問は、これが正しい追加get
方法であるかどうかと、another_create メソッドを追加する方法です。