9 lines
170 B
Ruby
9 lines
170 B
Ruby
module Globalizable
|
|
extend ActiveSupport::Concern
|
|
|
|
included do
|
|
globalize_accessors
|
|
accepts_nested_attributes_for :translations, allow_destroy: true
|
|
end
|
|
end
|