2018-05-06 09:45:27 +02:00
|
|
|
class GlossaryCategory < ActiveRecord::Base
|
|
|
|
has_many :terms, class_name: 'GlossaryTerm', foreign_key: 'category_id'
|
2018-05-12 07:26:43 +02:00
|
|
|
belongs_to :project
|
2018-08-14 03:15:42 +02:00
|
|
|
|
|
|
|
acts_as_positioned
|
|
|
|
|
|
|
|
scope :sorted, lambda { order(:position) }
|
|
|
|
|
2018-05-06 09:45:27 +02:00
|
|
|
end
|