我剛將活動管理員添加到我的導軌應用程序,我無法創建新用戶。我正在使用活動管理員創建的用戶模型,並添加了一些添加的列,如名和姓。當我爲新用戶填寫表單並單擊創建新用戶時,該頁面將刷新,但不會保存我的用戶,也不會進入包含成功消息的回顧頁面。無法使用ActiveAdmin創建新用戶
這裏是我的ADMINUSER模型
class AdminUser < ActiveRecord::Base
devise :database_authenticatable,
:recoverable, :rememberable, :trackable, :validatable
attr_accessible :email, :password, :password_confirmation, :remember_me, :first_name, :last_name
end
這裏是我的主動管理類
ActiveAdmin.register AdminUser do
index do
column :first_name
column :last_name
column :email
default_actions
end
form do |f|
f.inputs "User Details" do
f.inputs :email
f.inputs :first_name
f.inputs :last_name
end
f.buttons
end
end
那仁我遵循了這一解決方案,它解決了未經許可的問題,但但是我不知道爲什麼它不這樣做的更新行動。我嘗試更新記錄,但在修補程序操作後,它會回滾。你有什麼想法,爲什麼? http://stackoverflow.com/questions/24971627/activeadmin-after-create-redirecting-to-show-update-actions-error – BC2