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