3scale/porta

View on GitHub
app/models/plan_metric.rb

Summary

Maintainability
A
0 mins
Test Coverage
class PlanMetric < ApplicationRecord
  belongs_to :plan, :polymorphic => true
  belongs_to :metric

  attr_protected :plan_id, :metric_id, :plan_type, :tenant_id

  validates :plan, presence: true
  validates :metric, presence: true
end