Module: NoFlyList::ApplicationTagging

Extended by:
ActiveSupport::Concern
Defined in:
lib/no_fly_list/application_tagging.rb

Overview

This module provides functionality for global tags. Only one instance of this tag is allowed per database/schema.

This concern can be included in models that represent global tags to ensure uniqueness across the database/schema.

Examples:

Usage

class ApplicationTagging < ApplicationRecord
  include NoFlyList::ApplicationTagging
end