summaryrefslogtreecommitdiff
path: root/certs/app/controllers/certs_controller.rb
diff options
context:
space:
mode:
authorAzul <azul@leap.se>2013-01-26 11:23:43 +0100
committerAzul <azul@leap.se>2013-01-26 11:23:43 +0100
commit8d9c2e90b77d417f9715c95de91c629e80ca6603 (patch)
treeb449fea406e45de9e4cfd9462c4fc5cb01c74cee /certs/app/controllers/certs_controller.rb
parent0f8efed9afa480174c77c89d4d9d4a40f99bddab (diff)
no need to store the cert anymore - just new initialize and send it
Diffstat (limited to 'certs/app/controllers/certs_controller.rb')
-rw-r--r--certs/app/controllers/certs_controller.rb5
1 files changed, 1 insertions, 4 deletions
diff --git a/certs/app/controllers/certs_controller.rb b/certs/app/controllers/certs_controller.rb
index 3ec2f68..6db270c 100644
--- a/certs/app/controllers/certs_controller.rb
+++ b/certs/app/controllers/certs_controller.rb
@@ -4,11 +4,8 @@ class CertsController < ApplicationController
# GET /cert
def show
- @cert = ClientCertificate.create
+ @cert = ClientCertificate.new
render :text => @cert.key + @cert.cert, :content_type => 'text/plain'
- rescue RECORD_NOT_FOUND
- flash[:error] = t(:cert_pool_empty)
- redirect_to root_path
end
end