Browse Source

added some help text and made networkPolicy options more clear

pull/1/head
Rob Colbert 3 years ago
parent
commit
18b5042336
  1. 7
      app/views/admin/settings/editor.pug

7
app/views/admin/settings/editor.pug

@ -16,11 +16,12 @@ block content
fieldset fieldset
legend Network Settings legend Network Settings
p #{site.name} is capable of accepting Core Connect requests from other nodes, issuing them OAuth2 credentials, and offering their services to your node's members. These options control how the system will process these requests when received.
.uk-margin .uk-margin
label(for="network-policy").uk-form-label Constellation Policy label(for="network-policy").uk-form-label Constellation Policy
select(id="network-policy", name="networkPolicy").uk-select select(id="network-policy", name="networkPolicy").uk-select
option(value="open", selected= (site.networkPolicy === 'open')) Open option(value="open", selected= (site.networkPolicy === 'open')) Open (Auto-Accept)
option(value="controlled", selected= (site.networkPolicy === 'controlled')) Controlled option(value="controlled", selected= (site.networkPolicy === 'controlled')) Controlled (Approval Required)
option(value="closed", selected= (site.networkPolicy === 'closed')) Closed option(value="closed", selected= (site.networkPolicy === 'closed')) Closed (Auto-Reject)
button(type="submit").uk-button.dtp-button-primary Save Settings button(type="submit").uk-button.dtp-button-primary Save Settings
Loading…
Cancel
Save