1
0
Fork 1
mirror of https://github.com/mastodon/mastodon.git synced 2025-01-25 14:59:20 +00:00
mastodon/app/models/tag.rb

14 lines
233 B
Ruby
Raw Normal View History

# 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