0

ユーザーの登録を検証するために管理者アカウントを作成しようとしています。そのため、管理者とユーザーの2つのデバイスモデルがあります。

私はこれらの手順に従いました:
https ://github.com/plataformatec/devise/wiki/How-To%3a-Require-admin-to-activate-account-before-sign_in

しかし、ビューから私はこのエラーを受け取ります:
未定義のメソッド `edit_user_path '

これは私のapp/models/user.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

App / controllers / unauthorized_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

App / views / unauthorized_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 "Edit"、edit_user_path(user)

4

1 に答える 1

1

オプション#1-rake routes正しいヘルパーを確認します

current_userオプション#2-ユーザーを編集するための管理者インターフェイスを設定する必要があります。これは、デバイスが別のユーザーを編集したいユーザー向けではないインターフェイスのみを提供していると確信しているためです。

オプション#3- RailsAdminのようなものを使用する

于 2012-09-13T22:35:04.530 に答える