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

12 lines
271 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},
}
ACTIVATED = true
end