Files
fizzy/app/models/tag.rb
T
2024-10-16 16:41:11 -06:00

11 lines
176 B
Ruby

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