我有一个用户模型和一个问题模型。
在用户模型中:
has_many :questions
问题模型:
belongs_to
在我的问题/show.html.erb
<% if @question.user == current_user %>
<%= link_to 'Edit', edit_question_path(@question) %> | <%= link_to 'Destroy', @question, method: :delete, data: { confirm: 'Are you sure you want to delete this job?' } %>
<%= link_to 'Back', questions_path %>
<% else %>
<%= link_to 'Back', questions_path %>
<% end %>
只有创建问题的用户才能编辑和删除它?