Files
fizzy/app/models/tag.rb
T
2025-04-12 20:06:34 +02:00

16 lines
322 B
Ruby

class Tag < ApplicationRecord
include Filterable
has_many :taggings, dependent: :destroy
has_many :cards, through: :taggings
validates :title, format: { without: /\A#/ }
normalizes :title, with: -> { it.downcase }
scope :alphabetically, -> { order("lower(title)") }
def hashtag
"#" + title
end
end