CMSgov/dpc-app

View on GitHub
dpc-admin/app/models/tagging.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

class Tagging < ApplicationRecord
  belongs_to :tag
  belongs_to :taggable, polymorphic: true

  validates :tag, presence: true
  validates :taggable, presence: true

  delegate :name, to: :tag, prefix: true
end