2

我是 ruby​​ on rails 的新手。我正在尝试使用设计 gem 进行身份验证。我正在浏览 github 中的教程。我使用 rails generate devise:views 创建了设计视图。但我没有找到任何控制器。我需要自己创建还是有任何命令可以为其生成控制器?请帮忙

4

1 回答 1

3

Devise 已经在幕后为您创建了所需的控制器。这些控制器中很少有:RegistrationController, SessionController.

要自定义或覆盖任何控制器,请说RegistrationController;您可以执行以下操作(来自我的一个应用程序的片段):

class RegistrationsController < Devise::RegistrationsController
  before_filter :admin_user, :only => [:destroy]

  def new
    super
  end

  def create
    if simple_captcha_valid? #verifying user registration by captcha
      super
    else
      build_resource
      clean_up_passwords(resource)
      flash.now[:alert] = "There was an error with the captcha code below. Please re-enter the code."      
      render :new
    end
  end

  def update
    # required for settings form to submit when password is left blank
    if params[:user][:password].blank?
      params[:user].delete("password")
      params[:user].delete("password_confirmation")
    end

    @user = User.find(current_user.id)
    if @user.update_attributes(params[:user])
      set_flash_message :notice, :updated
      # Sign in the user bypassing validation in case his password changed
      sign_in @user, :bypass => true
      redirect_to after_update_path_for(@user)
    else
      render "edit"
    end
  end

  def destroy
    @user = User.find(params[:id])
    @user.destroy
    redirect_to rooth_path
  end
end

有关更多信息,您可以关注:https ://github.com/plataformatec/devise#configuring-controllers

于 2013-06-06T13:09:40.290 回答