This commit is contained in:
João Victor Geonizeli
2022-02-27 17:02:37 -03:00
parent 53c7d35d74
commit 1d692b31f8
13 changed files with 258 additions and 3 deletions

27
app/models/post.rb Normal file
View File

@@ -0,0 +1,27 @@
class Post < ApplicationRecord
belongs_to :user
belongs_to :quoted_post, optional: true, class_name: 'Post'
validates :content, length: { maximum: 777 }
validates :content, presence: true, if: :quoted_post?
def kind
if quoted_post?
:quoted_post
elsif repost?
:repost
else
:post
end
end
private
def quoted_post?
content.present? && quoted_post_id
end
def repost?
content.blank? && quoted_post_id
end
end