summaryrefslogtreecommitdiff
path: root/certs/app/controllers/certs_controller.rb
blob: 3b7d35d7e77b2852b811281874670a0be159b82c (plain)
1
2
3
4
5
6
7
8
9
class CertsController < ApplicationController

  # GET /cert
  def show
    @cert = ClientCertificate.new(free: !logged_in?)
    render text: @cert.to_s, content_type: 'text/plain'
  end

end