foodsoft/plugins/links/app/models/link.rb

6 lines
98 B
Ruby

class Link < ApplicationRecord
belongs_to :workgroup
scope :ordered, -> { order(:name) }
end