소스 검색

Make deleted candidate redirect temporary

Just being paranoid
tags/last-sinatra-version
Adrian Short 8 년 전
부모
커밋
9a1f8d0ad6
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. +1
    -1
      app.rb

+ 1
- 1
app.rb 파일 보기

@@ -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])


불러오는 중...
취소
저장