Files
fizzy/app/models/tag.rb
T
2024-11-05 21:21:46 -06:00

13 lines
198 B
Ruby

class Tag < ApplicationRecord
include Filterable
belongs_to :account
has_many :taggings, dependent: :destroy
has_many :bubbles, through: :taggings
def hashtag
"#" + title
end
end