Class: CertAuth::Server

Inherits:
Sinatra::Base
  • Object
show all
Defined in:
lib/cert_auth/server.rb

Instance Method Summary collapse

Instance Method Details

#/Object

Generic view with a list of all signed certificates.



13
14
15
16
# File 'lib/cert_auth/server.rb', line 13

get '/' do
  @certificates = CertAuth.keys
  haml :index
end