2012-09-13 34 views
0

我想做一個管理員帳戶來驗證用戶的註冊,因爲我有2個設計模型:管理員和用戶。Rails的3.0設計帳戶驗證從管理員到用戶 - 未定義的方法`edit_user_path'

我已經按照下列步驟操作:
https://github.com/plataformatec/devise/wiki/How-To%3a-Require-admin-to-activate-account-before-sign_in

但是從視圖中我得到這個錯誤:
未定義的方法`edit_user_path」

這是我的應用程序/模型/用戶。 rb

class User < ActiveRecord::Base 
    devise :database_authenticatable, :registerable, 
     :recoverable, :rememberable, :trackable, :validatable 

    attr_accessible :email, :password, :password_confirmation, :remember_me 

    def active_for_authentication? 
    super && approved? 
    end 

    def inactive_message 
    if !approved? 
     :not_approved 
    else 
     super # Use whatever other message 
    end 
    end 

    def self.send_reset_password_instructions(attributes={}) 
    recoverable = find_or_initialize_with_errors(reset_password_keys, attributes, :not_found) 
    if !recoverable.approved? 
     recoverable.errors[:base] << I18n.t("devise.failure.not_approved") 
    elsif recoverable.persisted? 
     recoverable.send_reset_password_instructions 
    end 
    recoverable 
    end 
end 

應用/控制器/ unapproved_users_controller.rb

class UnapprovedUsersController < ApplicationController 

    def index 
    if params[:approved] == "false" 
     @users = User.find_all_by_approved(false) 
    else 
     @users = User.all 
    end 
    end 
end 

應用/視圖/ unapproved_users.html.haml

%h1 Users 

= link_to "All Users", :action => "index" 
| 
= link_to "Users awaiting approval", :action => "index", :approved => "false" 

%table 
    - @users.each do |user| 
     %tr 
      %td= user.email 
      %td= user.approved 
      %td= link_to "Edit", edit_user_path(user) 

此路徑使得問題:
=的link_to 「編輯」,編輯用戶路徑(用戶)

+0

http://thekindofme.wordpress.com/2010/01/31/notes-on-setting-up-devise-authentication-solution-for-rails/ – prusswan

回答

1

選項#1 - 檢查rake routes爲正確的幫手

選項#2 - 您需要設置管理員界面來編輯用戶,因爲我非常確定設計僅爲current_user提供界面,而不是用於編輯其他用戶的人。

選項#3 - 使用類似RailsAdmin

+0

#1在rake路由中,edit_user的最近路徑是edit_user_registration,它要求我在繼續之前登錄。 #2在我得到錯誤的管理app/views/unapproved_users.html.haml中。 –

+1

我對#2說的是在UnapprovedUsersController中有一個編輯和更新操作,然後爲此設置正常的日常連接器代碼,製作一個視圖,然後bam準備就緒(不要忘記添加當然也有路線)。假設UnnaprovedUsersController的路由爲'resources:unapproved_users'或其他,那麼你可以將'edit_user_path'改爲'edit_unapproved_user_path'。 :) – FluffyJack

+0

請再提一個問題,當我更新布爾值時出現錯誤。在控制器中我有兩個def編輯/更新@user = User.find(params [:id]),在視圖/表單中我的表單助手是= form_for(@user,:url => {:action =>'update' })do | f |。元素是= f.check_box:已批准 –