소스 검색

Create redirects for merged/deleted candidates so old URLs still work

tags/last-sinatra-version
Adrian Short 10 년 전
부모
커밋
7cc3641b0e
2개의 변경된 파일11개의 추가작업 그리고 0개의 파일을 삭제
  1. +4
    -0
      app.rb
  2. +7
    -0
      models.rb

+ 4
- 0
app.rb 파일 보기

@@ -185,6 +185,10 @@ end
# end

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

if @candidate = Candidate.get(params[:id])
@candidacies = repository(:default).adapter.select("
SELECT


+ 7
- 0
models.rb 파일 보기

@@ -86,6 +86,13 @@ class Candidate
end
end

class DeletedCandidate
include DataMapper::Resource

property :old_candidate_id, Integer, :key => true # ID of candidate that has been merged/deleted
property :candidate_id, Integer, :required => true # ID of candidate that has been kept
end

class Candidacy
include DataMapper::Resource



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