blob: 402bef3c53a24275715cd498b1bd20bfd7aaccb1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
class CertsController < ApplicationController
before_filter :authorize
# GET /cert
def show
@cert = Cert.pick_from_pool
render :text => @cert.zipped, :content_type => 'text/plain'
end
end
|