我正在使用Devise进行身份验证。
我正在使用它进行注册和编辑帐户。我需要能够为每个帐户添加“子”用户。如果我删除,我可以让它工作:可以从用户模型注册,但这样做会打破edit_user_registration_path。
我需要的是:
允许新用户注册。
允许现有客户在其帐户中添加“子用户”。
我认为我需要使用自引用关系来创建帐户所有者。
这是我目前的代码
class User < ActiveRecord::Base
devise :database_authenticatable, :registerable,
:recoverable, :rememberable, :trackable, :validatable
attr_accessible :email, :password, :password_confirmation, :remember_me, :name, :location, :country, :job_title, :company
end
(如果我删除:可注册我可以使用用户CRUD创建新用户)
class UsersController < ApplicationController
def new
@user = User.new
respond_to do |format|
format.html
end
end
def create
@user = User.new(params[:user])
if @user.save
respond_to do |format|
format.html { redirect_to :action => :index }
end
else
respond_to do |format|
format.html { render :action => :new, :status => :unprocessable_entity }
end
end
end
end
用户/新
<h2>Register User</h2>
<%= form_for(@user) do |f| %>
<%= f.error_messages %>
<p><%= f.label :email %><br />
<%= f.text_field :email %></p>
<p><%= f.label :password %></p>
<p><%= f.password_field :password %></p>
<p><%= f.label :password_confirmation %></p>
<p><%= f.password_field :password_confirmation %></p>
<p><%= f.submit "Register" %></p>
<% end %>
答案 0 :(得分:3)
您可以添加:has_many:属于您的用户内部的关系。
之类的东西 class User
belongs_to :parent, :class_name => 'User'
has_many :children, :class_name => 'User'
...
end
并在控制器中添加对父用户的引用。
class UsersController < ApplicationController
def new
@user = User.new
@user.parent_id = params[:parent_id]
respond_to do |format|
end
end