mirror of
https://github.com/yingziwu/mastodon.git
synced 2026-02-07 21:15:12 +00:00
11 lines
202 B
Ruby
11 lines
202 B
Ruby
class Tag < ApplicationRecord
|
|
has_and_belongs_to_many :statuses
|
|
|
|
HASHTAG_RE = /(?:^|[^\/\w])#([[:word:]_]+)/i
|
|
|
|
validates :name, presence: true, uniqueness: true
|
|
|
|
def to_param
|
|
name
|
|
end
|
|
end
|