Class: CertsController
- Inherits:
-
ApplicationController
- Object
- ApplicationController
- CertsController
- Defined in:
- app/controllers/certs_controller.rb
Instance Method Summary collapse
-
#show ⇒ Object
GET /cert.
Instance Method Details
#show ⇒ Object
GET /cert
4 5 6 7 |
# File 'app/controllers/certs_controller.rb', line 4 def show @cert = Cert.pick_from_pool render :text => @cert.zipped, :content_type => 'text/plain' end |