Stop checking for non-existing conference_id in versions controller

This commit is contained in:
Nishanth Vijayan 2016-08-15 15:44:20 +05:30
parent 58a3913735
commit 5965bcf193
2 changed files with 0 additions and 11 deletions

View file

@ -7,11 +7,6 @@ module Admin
@conf_ids_for_organizer = current_user.is_admin? ? Conference.pluck(:id) : Conference.with_role(:organizer, current_user).pluck(:id)
@conference_id = params[:conference_id].to_i unless params[:conference_id].nil?
unless @conference_id.nil? || Conference.exists?(id: @conference_id)
redirect_to admin_revision_history_path, error: "Conference with ID #{@conference_id} does not exist!"
return
end
return unless @conference_id.present?
authorize! :index, PaperTrail::Version.new(conference_id: @conference_id)
@versions = @versions.where(conference_id: @conference_id)