chinwagsocial/app/models/tag.rb

14 lines
259 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2016-11-05 05:12:59 +11:00
class Tag < ApplicationRecord
2016-11-06 01:20:05 +11:00
has_and_belongs_to_many :statuses
HASHTAG_RE = /(?:^|[^\/\)\w])#([[:word:]_]*[[:alpha:]_][[:word:]_]*)/i
2016-11-05 05:12:59 +11:00
validates :name, presence: true, uniqueness: true
2016-11-06 01:20:05 +11:00
def to_param
name
end
2016-11-05 05:12:59 +11:00
end