blob: b6d1d0bae76908c4d85f83efa71a03b208414e6f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
class V1::CertsController < ApplicationController
before_filter :require_login, :unless => :anonymous_certs_allowed?
# GET /cert
# deprecated - we actually create a new cert and that can
# be reflected in the action. GET /cert will eventually go
# away and be replaced by POST /cert
def show
create
end
# POST /cert
def create
@cert = ClientCertificate.new(:prefix => service_level.cert_prefix)
render text: @cert.to_s, content_type: 'text/plain'
end
protected
def anonymous_certs_allowed?
APP_CONFIG[:allow_anonymous_certs]
end
def service_level
current_user.effective_service_level
end
end
|