2016-11-15 17:56:29 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-11-04 20:12:59 +02:00
|
|
|
class Tag < ApplicationRecord
|
2016-11-05 16:20:05 +02:00
|
|
|
has_and_belongs_to_many :statuses
|
|
|
|
|
2016-11-07 18:35:25 +02:00
|
|
|
HASHTAG_RE = /(?:^|[^\/\w])#([[:word:]_]+)/i
|
2016-11-04 20:12:59 +02:00
|
|
|
|
|
|
|
validates :name, presence: true, uniqueness: true
|
2016-11-05 16:20:05 +02:00
|
|
|
|
|
|
|
def to_param
|
|
|
|
name
|
|
|
|
end
|
2016-11-04 20:12:59 +02:00
|
|
|
end
|