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