JS-Tech/resj

View on GitHub
app/models/location.rb

Summary

Maintainability
A
0 mins
Test Coverage
class Location < ApplicationRecord

  belongs_to :canton
  has_many :cards
  has_many :orators

  def full_name
      "#{official_name} - #{post_name} - #{zip} - #{canton.name}"
  end

end