Soc/app/models/micropost.rb

20 lines
374 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class Micropost < ApplicationRecord
belongs_to :user
has_rich_text :content
validates :user,
:content,
presence: true
2023-10-19 17:35:48 +00:00
has_many :microposts_tags
has_many :tags, through: :microposts_tags
2023-10-19 17:46:41 +00:00
def add_tags(*tag_names)
tag_names.each do |tag|
tags << Tag.find_or_create_by(name: tag)
end
end
end