This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2016-11-04 11:12:59 -07:00
|
|
|
class Tag < ApplicationRecord
|
2016-11-05 07:20:05 -07:00
|
|
|
has_and_belongs_to_many :statuses
|
|
|
|
|
2016-11-07 08:35:25 -08:00
|
|
|
HASHTAG_RE = /(?:^|[^\/\w])#([[:word:]_]+)/i
|
2016-11-04 11:12:59 -07:00
|
|
|
|
|
|
|
validates :name, presence: true, uniqueness: true
|
2016-11-05 07:20:05 -07:00
|
|
|
|
|
|
|
def to_param
|
|
|
|
name
|
|
|
|
end
|
2016-11-04 11:12:59 -07:00
|
|
|
end
|