2019-01-15 20:45:05 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-06-27 20:58:49 +08:00
|
|
|
class Tag < ApplicationRecord
|
2016-02-12 23:52:43 +08:00
|
|
|
include SearchableModel
|
|
|
|
|
2016-09-21 21:35:23 +08:00
|
|
|
auto_strip_attributes :name, :color, nullify: false
|
2016-10-05 23:45:20 +08:00
|
|
|
validates :name,
|
|
|
|
presence: true,
|
|
|
|
length: { maximum: Constants::NAME_MAX_LENGTH }
|
|
|
|
validates :color,
|
|
|
|
presence: true,
|
|
|
|
length: { maximum: Constants::COLOR_MAX_LENGTH }
|
2016-02-12 23:52:43 +08:00
|
|
|
validates :project, presence: true
|
|
|
|
|
2019-05-08 20:53:34 +08:00
|
|
|
belongs_to :created_by, foreign_key: 'created_by_id', class_name: 'User', optional: true
|
|
|
|
belongs_to :last_modified_by, foreign_key: 'last_modified_by_id', class_name: 'User', optional: true
|
|
|
|
belongs_to :project
|
2017-06-28 21:21:32 +08:00
|
|
|
has_many :my_module_tags, inverse_of: :tag, dependent: :destroy
|
2024-02-05 20:36:12 +08:00
|
|
|
has_many :my_modules, through: :my_module_tags, dependent: :destroy
|
2016-02-12 23:52:43 +08:00
|
|
|
end
|