闭社主体 forked from https://github.com/tootsuite/mastodon
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
233 B

7 years ago
7 years ago
  1. # frozen_string_literal: true
  2. class Tag < ApplicationRecord
  3. has_and_belongs_to_many :statuses
  4. HASHTAG_RE = /(?:^|[^\/\w])#([[:word:]_]+)/i
  5. validates :name, presence: true, uniqueness: true
  6. def to_param
  7. name
  8. end
  9. end