I have a simple method in my model that I am trying to get to update a record in my database, here is the model.
class Project
include Mongoid::Document
key :name, String, :required => true
key :user_id, ObjectId
has_many :pages
belongs_to :user
def update_project(project)
project = Project.find(project.id)
project.update_attributes(name: "Test")
end
end
for the life of me I can not get this to update the record, any suggestions?
I am using; rails 3.1.1 mongoid, 2.2.3
Thanks in advance!