1
0
Fork 0
mirror of https://github.com/mastodon/mastodon.git synced 2024-08-20 21:08:15 -07:00
mastodon/app/models/tag.rb

14 lines
257 B
Ruby
Raw Normal View History

# frozen_string_literal: true
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
HASHTAG_RE = /(?:^|[^\/\w])#([[:word:]_]*[[:alpha:]_][[: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