11 lines
176 B
Ruby
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
|