about summary refs log tree commit diff
path: root/app/models/tag.rb
blob: ac89c9bff36ab8478d3d8878e428de6f6953202a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
class Tag < ApplicationRecord
  has_and_belongs_to_many :statuses

  HASHTAG_RE = /(?:^|[^\/\w])#([[:word:]_]+)/i

  validates :name, presence: true, uniqueness: true

  def to_param
    name
  end
end