Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Scoped uniqueness validation of associated objects #999

Closed
lighthouse-import opened this issue May 16, 2011 · 1 comment
Closed

Scoped uniqueness validation of associated objects #999

lighthouse-import opened this issue May 16, 2011 · 1 comment

Comments

@lighthouse-import
Copy link

Imported from Lighthouse. Original ticket at: http://rails.lighthouseapp.com/projects/8994/tickets/6673
Created by Andriy Tyurnikov - 2011-04-05 10:41:54 UTC

class Poll < ActiveRecord::Base
has_many :answers

validates_associated :answers

accepts_nested_attributes_for :answers, :allow_destroy => true
end

class Answer < ActiveRecord::Base
belongs_to :poll

validates_uniqueness_of :body, :scope => :poll_id
end

When new poll is created,
attributes for associated answers are passed,
but uniqueness of answers body in scope of poll is not validated.

Any ideas how to fix that.

@lighthouse-import
Copy link
Author

Imported from Lighthouse.
Comment by Kane - 2011-04-05 23:38:33 UTC

can you supply a failing test case?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant