blob: 6db270cbc43456cea09416de6ae6de1929077fbc (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
class CertsController < ApplicationController
before_filter :authorize
# GET /cert
def show
@cert = ClientCertificate.new
render :text => @cert.key + @cert.cert, :content_type => 'text/plain'
end
end
|