Я использую Ruby на Rails 5.2.3, Mongoid и Devise
У меня есть две модели, и мне нужно передать значение button_color из родительской модели
user.rb
class User
include Mongoid::Document
field :button_color, type: String, default: '#FFFFFF'
has_many :items, dependent: :destroy
end
item.rb
class Item
include Mongoid::Document
field :button_color, type: String
belongs_to :user, touch: true
end
Мне нужно получить что-то вроде
поле: button_color, тип: String, по умолчанию: current_user.button_color