2025-02-20 22:46:52 +09:00
|
|
|
class Memo < ApplicationRecord
|
2025-02-24 23:09:54 +09:00
|
|
|
belongs_to :user
|
2025-02-24 10:48:13 +09:00
|
|
|
has_one_attached :image
|
2025-02-20 22:46:52 +09:00
|
|
|
validates :content, presence: true
|
|
|
|
|
2025-02-22 23:39:32 +09:00
|
|
|
def self.ransackable_attributes(_auth_object = nil)
|
|
|
|
%w[content created_at id updated_at]
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.ransackable_associations(_auth_object = nil)
|
|
|
|
[]
|
2025-02-20 22:46:52 +09:00
|
|
|
end
|
|
|
|
end
|