|
|
@ -18,11 +18,12 @@ class FeaturedTag < ApplicationRecord
|
|
|
|
|
|
|
|
|
|
|
|
delegate :name, to: :tag, allow_nil: true
|
|
|
|
delegate :name, to: :tag, allow_nil: true
|
|
|
|
|
|
|
|
|
|
|
|
validates :name, presence: true
|
|
|
|
validates_associated :tag, on: :create
|
|
|
|
|
|
|
|
validates :name, presence: true, on: :create
|
|
|
|
validate :validate_featured_tags_limit, on: :create
|
|
|
|
validate :validate_featured_tags_limit, on: :create
|
|
|
|
|
|
|
|
|
|
|
|
def name=(str)
|
|
|
|
def name=(str)
|
|
|
|
self.tag = Tag.find_or_initialize_by(name: str.delete('#').mb_chars.downcase.to_s)
|
|
|
|
self.tag = Tag.find_or_initialize_by(name: str.strip.delete('#').mb_chars.downcase.to_s)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
def increment(timestamp)
|
|
|
|
def increment(timestamp)
|
|
|
|