ユーザーの登録を検証するために管理者アカウントを作成しようとしています。そのため、管理者とユーザーの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)