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

I am using mongoid with devise invitable,

after assigning roles to user I found the following error

"**undefined method `as_document' for Array **" , any suggestions ?

invitable = find_or_initialize_with_error_by(:email, attributes[:email])
invitable.attributes = attributes
# scope_id attribute does not set properly
invitable.roles.map {|r| r.scope_id = attributes[:roles_attributes]["0"][:scope_id]}

if invitable.persisted? && !invitable.invited?
  invitable.errors.add(:email, :taken)
elsif invitable.email.present? && invitable.email.match(Devise.email_regexp)
  invitable.invite!
end

Whats wrong I am doing ?

share|improve this question
Facing the same error. Can anyone please help? – Haseeb Khan Feb 27 at 6:14
1  
You posted code bud didn't tell us what line throws the error. Can you post the real stack trace or some more info? – alestanis Feb 27 at 11:04

1 Answer

This is likely because as_document doesn't work against an array, only single objects.

share|improve this answer
There is not enough code in your question to give further details or possible corrected version. – Asya Kamsky 53 mins ago

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.