我正在构建一个只允许管理员帐户创建新用户帐户的应用程序。我使用设计4.2进行身份验证,并使用rails 4.2.6进行授权扫描。我的问题是没有创建新用户,我没有收到任何错误消息,所以不知道出了什么问题。 我的注册管理员:
class Users::RegistrationsController < Devise::RegistrationsController
before_action :configure_sign_up_params, only: [:create]
before_action :configure_account_update_params, only: [:update]
#before_action :authorize_admin, only: [:create, :new, :destroy]
before_action :authenticate_user!
load_and_authorize_resource
# GET /resource/sign_up
def new
super
end
# POST /resource
def create
build_resource(sign_up_params)
resource.save
yield resource if block_given?
if resource.persisted?
if resource.active_for_authentication?
set_flash_message! :notice, :signed_up
#sign_up(resource_name, resource)
respond_with resource, location: after_sign_up_path_for(resource)
else
set_flash_message! :notice, :"signed_up_but_#{resource.inactive_message}"
expire_data_after_sign_in!
respond_with resource, location: after_inactive_sign_up_path_for(resource)
end
else
clean_up_passwords resource
set_minimum_password_length
respond_with resource
end
end
# GET /resource/edit
def edit
super
end
# PUT /resource
def update
super
end
# DELETE /resource
def destroy
super
end
def cancel
super
end
protected
def configure_sign_up_params
devise_parameter_sanitizer.permit(:sign_up, keys: [:name])
end
def configure_account_update_params
devise_parameter_sanitizer.permit(:account_update, keys: [:name])
end
def after_sign_up_path_for(resource)
super(resource)
end
def after_inactive_sign_up_path_for(resource)
super(resource)
end
end
我的观点:
<%= form_for(resource, as: resource_name, url: registration_path(resource_name)) do |f| %>
<%= devise_error_messages! %>
<div class="field">
<%= f.label :name %>
<%= f.text_field :name %>
</div>
<div class="field">
<%= f.label :email %><br />
<%= f.email_field :email%>
</div>
<div class="field">
<%= f.label :password %>
<% if @minimum_password_length %>
<em>(<%= @minimum_password_length %> characters minimum)</em>
<% end %><br />
<%= f.password_field :password, autocomplete: "off" %>
</div>
<div class="field">
<%= f.label :password_confirmation %><br />
<%= f.password_field :password_confirmation, autocomplete: "off" %>
</div>
<div class="actions">
<%= f.submit "Sign up" %>
</div>
<% end %>
<%= render "devise/shared/links" %>
我注释了在创建帐户时注册新用户的行,因为我在以管理员身份登录时创建新用户时收到了“您已登录”的Flash消息,这让我相信这就是为什么新用户未被保存。这似乎是不正确的,虽然我在尝试创建新用户时仍然收到闪存消息说同样的事情。任何帮助表示赞赏。
答案 0 :(得分:0)
听起来您的目标是允许管理员用户创建用户。在这种情况下,您需要实际创建用户,而不是注册。这意味着,在您的一个控制器方法中(可能在def create
@user = User.create params
end
中),您将拥有类似的内容:
Users::RegistrationsController
在bool
中创建新的注册时,表示您尝试注册为新用户,但由于您已经登录,因此设计会阻止它。