blob: e51f9c3a7b1021c939f2e977049a4f77cf081332 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<%=
# grab some fields from provider.json
hsh = provider.pick(
:languages, :description, :name, :services,
:enrollment_policy, :default_language, :service
)
hsh['domain'] = domain.full_suffix
hsh['api_version'] = "1"
hsh['api_uri'] = ["https://", api.domain, ':', api.port].join
hsh['ca_cert_uri'] = 'https://' + webapp.domain + '/ca.crt'
hsh['ca_cert_fingerprint'] = fingerprint(:ca_cert)
hsh.dump_json
%>
|