tag.rb 113 B

123456
  1. class Tag < ApplicationRecord
  2. belongs_to :project_id
  3. def i18n_tag
  4. return t(self.tag)
  5. end
  6. end