Files
fizzy/app/models/tag.rb
T
2025-02-10 17:01:42 -06:00

13 lines
231 B
Ruby

class Tag < ApplicationRecord
include Filterable
belongs_to :account, default: -> { Current.account }
has_many :taggings, dependent: :destroy
has_many :bubbles, through: :taggings
def hashtag
"#" + title
end
end