我正在与 Devise 合作,我正在尝试覆盖注册控制器。
我一直关注这里的帖子,但没有运气。
这就是我所拥有的:
class AccountsController::RegistrationsController < Devise::RegistrationsController
def new
super
end
end
devise_for :accounts, :controllers => {:registrations => "accounts/registrations"} do
get "welcome" => "accounts#new", :as => :new_account
end
我还在视图中创建了一个帐户文件夹并添加了新视图。
我收到以下错误:
app/controllers/accounts_controller.rb:1:in `<top (required)>'