foodsoft/plugins/links/app/models/link.rb
2020-07-29 11:38:23 +02:00

7 lines
135 B
Ruby

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