Quellcode durchsuchen

Make deleted candidate redirect temporary

Just being paranoid
tags/last-sinatra-version
Adrian Short vor 8 Jahren
Ursprung
Commit
9a1f8d0ad6
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  1. +1
    -1
      app.rb

+ 1
- 1
app.rb Datei anzeigen

@@ -202,7 +202,7 @@ end

get '/candidates/:id/?' do
if @deleted_candidate = DeletedCandidate.get(params[:id])
redirect "/candidates/#{@deleted_candidate.candidate_id}", 301 # HTTP 301 Moved Permanently
redirect "/candidates/#{@deleted_candidate.candidate_id}", 302 # HTTP 302 Moved Temporarily
end

if @candidate = Candidate.get(params[:id])


Laden…
Abbrechen
Speichern