2021-08-24 11:10:36 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Projects
|
|
|
|
class Topic < ApplicationRecord
|
2021-09-22 20:12:17 -04:00
|
|
|
include Avatarable
|
|
|
|
|
2021-08-24 11:10:36 -04:00
|
|
|
validates :name, presence: true, uniqueness: true, length: { maximum: 255 }
|
2021-09-22 20:12:17 -04:00
|
|
|
validates :description, length: { maximum: 1024 }
|
2021-08-24 11:10:36 -04:00
|
|
|
|
|
|
|
has_many :project_topics, class_name: 'Projects::ProjectTopic'
|
|
|
|
has_many :projects, through: :project_topics
|
|
|
|
end
|
|
|
|
end
|