I have an app, and now, I need to save user’s preferences.
I’ve done the following:
class User
include Mongoid::Document
include Mongoid::Timestamps
embeds_one :setting
end
and
class Setting
include Mongoid::Document
include Mongoid::Timestamps
belongs_to :user
field :notify, type: Boolean
end
the question is: how can I make a form to save user’s preferences? I have no idea at all…
anything is appreciated 🙂
Create also the controller