如果用户在2天内发布,如何防止发布?

时间:2018-07-16 01:37:36

标签: ruby-on-rails

如果current_user发布少于2天,我想阻止提交数据吗?

<%= form_for @post do |x|%>
<% x.text_area :content %>
<%= x.submit %>

1 个答案:

答案 0 :(得分:1)

您只需检查当前用户的最新帖子是否> = 2天前...

if current_user.posts.last.created_at >= 2.days.ago