af83/chouette-core

View on GitHub
app/models/concerns/line_referential_support.rb

Summary

Maintainability
A
0 mins
Test Coverage
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
end