This repository has been archived on 2021-11-24. You can view files and clone it, but cannot push or open issues or pull requests.
phone_app/app/models/p_grade.rb
2021-08-27 19:43:54 +02:00

11 lines
252 B
Ruby

class PGrade < ApplicationRecord
has_many :p_articles
acts_as_sorting :fields => {
:id => {:name => "id", :reorder => true},
:grade => {:name => "Grade", :reorder => true},
:actions => {:name => "Actions", :reorder => false},
}
end