10 lines
185 B
Ruby
10 lines
185 B
Ruby
class MOdrProductCat < ApplicationRecord
|
|
belongs_to :m_odr
|
|
|
|
acts_as_sorting :fields => {
|
|
:name => {:name => "Nom", :reorder => true},
|
|
|
|
:actions => "Actions"
|
|
}
|
|
end
|