ユーザーモデルと質問モデルがあります。
ユーザーモデルでは:
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 %>
質問を作成したユーザーのみが質問を編集および削除するにはどうすればよいですか?