Adds configurable network form display

This commit is contained in:
Kjetil Mehl 2015-03-22 14:32:01 +01:00
parent cf88a9dc36
commit 20103a29a5
2 changed files with 46 additions and 33 deletions

View file

@ -88,6 +88,7 @@
<div class="col-sm-12">
<h1 class="title">Connect</h1>
</div>
<div <%= !displayNetwork ? 'style="display: none;"' : ''%>>
<div class="col-sm-12">
<h2>Network settings</h2>
</div>
@ -123,6 +124,7 @@
</label>
</div>
<div class="clearfix"></div>
</div>
<div class="col-sm-12">
<h2>User preferences</h2>
</div>

View file

@ -64,6 +64,17 @@ module.exports = {
//
prefetch: true,
//
// Display network
//
// If set to false Shout will not expose network settings in login
// form, limiting client to connect to the configured network.
//
// @type boolean
// @default true
//
displayNetwork: true,
//
// Log settings
//