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.

11 lines
202 B

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