petities/petitions.eu

View on GitHub
app/models/petition_type.rb

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
class PetitionType < ApplicationRecord
  has_many :petitions
  has_many :offices

  has_many :allowed_cities, dependent: :destroy
  has_many :cities, through: :allowed_cities
end