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

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

  validates :name, presence: true, uniqueness: true

  def to_param
    name
  end
end