我需要验证具有范围的电子邮件,但经过设计后无法正常工作。即使在修改了电子邮件唯一性的索引之后,它也不允许用户根据范围进行创建。
我尝试在config / initializers / devise.rb上添加以下行
config.authentication_keys=[:email, :organization_id]
但是它不起作用。
我也尝试过对模型进行验证:
validates_uniqueness_of :email, scope: :organization_id
但是它不起作用。
还尝试通过修改用户迁移:
def up
remove_index :users, name: 'index_users_on_email'
add_index :users, [:email, :organization_id], unique: true
end
但是效果不佳。
组织用户模型之间的关系: app / models / organization.rb
Class Organization < ApplicationRecord
has_many :users
end
app / models / user.rb
class User < ApplicationRecord
belongs_to :organization
end
这里是架构:
create_table "users", force: :cascade do |t|
t.string "type"
t.string "full_name"
t.string "email", default: "", null: false
t.string "encrypted_password", default: "", null: false
t.string "reset_password_token"
t.datetime "reset_password_sent_at"
t.datetime "remember_created_at"
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.string "authentication_token", limit: 30
t.integer "organization_id"
t.string "archive_number"
t.datetime "archived_at"
t.index ["authentication_token"], name: "index_users_on_authentication_token", unique: true
t.index ["email" , "organization_id"], name: "index_users_on_email_and_organization_id", unique: true
t.index ["reset_password_token"], name: "index_users_on_reset_password_token", unique: true
结束
我的问题是: 我现在在Organizatin 1中有电子邮件用户,必须在组织2中用相同的电子邮件添加另一个用户。在执行此操作时出现错误
ActiveRecord :: RecordInvalid:验证失败:电子邮件已经
我相信在验证范围内添加范围后,我应该能够使用相同的电子邮件添加用户。
答案 0 :(得分:1)
对于电子邮件唯一验证,您可以尝试以下操作: 在模型中定义以下内容:
class User < ApplicationRecord
devise :database_authenticatable, :registerable,
:recoverable, :rememberable, :validatable
validates_uniqueness_of :email, scope: :organization
def will_save_change_to_email?
false
end
def email_changed?
false
end
end
这对我有用。