aboutsummaryrefslogtreecommitdiffstats
path: root/app/models/concerns/line_referential_support.rb
blob: b77a178ebf297836e22bff59fb3b52d782f49ff0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
module LineReferentialSupport
  extend ActiveSupport::Concern

  included do
    belongs_to :line_referential
    validates_presence_of :line_referential
    alias_method :referential, :line_referential
  end

  def workgroup
    line_referential&.workgroup
  end

  def hub_restricted?
    false
  end
end