Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Im stuck on the issue a few days..Please help, thanks in advance.

This is a rails project on mongoid, there're 2 models in the project, one is User, another CustomSearchEngine:

class User
  include Mongoid::Document
  # Include default devise modules. Others available are:
  ......
  # keep the CSEs
  has_and_belongs_to_many :keeped_custom_search_engines, class_name: 'CustomSearchEngine', inverse_of: :consumers

  # create or fork the CSEs
  has_many :custom_search_engines, inverse_of: :author, dependent: :destroy

  # Index
  index({username: 1}, {unique: true, name: 'user_username'})
  index({email: 1}, {unique: true, name: 'user_email'})

  # Massive assignment for User.new
  attr_accessible :email, :username, :agreement, :password, :password_confirmation
  attr_accessor :agreement, :password_confirmation
  validates :password_confirmation, presence: true
  validates :agreement, presence: true
end

class CustomSearchEngine
  include Mongoid::Document
  include Mongoid::Timestamps
  paginates_per 20
 ...
  belongs_to :author, class_name: 'User', inverse_of: :custom_search_engines
  has_and_belongs_to_many :consumers, class_name: 'User', inverse_of: :keeped_custom_search_engines
  belongs_to :node

  # Index
  index({author_id: 1}, {name: 'cse_author_id'})
  index({node_id: 1}, {name: 'cse_node_id'})

  # validations
  validates :status, presence: true, inclusion: {in: ['draft', 'publish']}
  validates :author_id, presence: true
  validates :node_id, presence: true

  scope :recent, ->(status) { where(status: status).desc(:created_at) }
  ...
end

In my CustomSearchEngine controller:

current_user.keeped_custom_search_engines.push(@custom_search_engine)

Then I go to my mongodb, I see only the user document updated:

keeped_custom_search_engine_ids: ["50a208092061c770190000df"]

but the custom search engine document isn't changed:

consumer_ids: [] 

And I get an error: @messages={:consumers=>["is invalid"]}

Something I missed?

share|improve this question
try taking the indexes off the CustomSearchEngine model and see if it persists then. When I've had problems like this is was because I declared conflicting indexes. Not sure if this will fix it, but easy enough to try – SporkInventor Nov 14 '12 at 1:54
I tried your suggestion, but it didn't work. The error means to me it's about the validation. But I dont find anything wrong about the validations. – firsthym Nov 15 '12 at 1:15

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.