Skip to content
Snippets Groups Projects
Commit 2ee97d21 authored by Joanna Kaźmierczak's avatar Joanna Kaźmierczak
Browse files

fix

parent 60573f52
No related branches found
No related tags found
1 merge request!27Resolve "Enhance configuration model and display two additional fields on the settings view"
...@@ -84,14 +84,13 @@ ...@@ -84,14 +84,13 @@
class="col-sm-3 control-label">{{ 'PORTAL_CONFIGURATION.DOMAIN_SELECTION_ENABLED' | translate }}</label> class="col-sm-3 control-label">{{ 'PORTAL_CONFIGURATION.DOMAIN_SELECTION_ENABLED' | translate }}</label>
<div class="col-sm-9 pd-top-7"> <div class="col-sm-9 pd-top-7">
<input type="checkbox" id="registrationDomainSelectionEnabled" name="registrationDomainSelectionEnabled" <input type="checkbox" id="registrationDomainSelectionEnabled" name="registrationDomainSelectionEnabled"
[(ngModel)]="this.configuration.registrationDomainSelectionEnabled" [(ngModel)]="this.configuration.registrationDomainSelectionEnabled">
[checked]="this.configuration.registrationDomainSelectionEnabled === true">
</div> </div>
</div> </div>
<div class="form-group"> <div class="form-group">
<label for="bulkDomainsAllowForSsoAccounts" <label for="bulkDomainsAllowForSsoAccounts"
class="col-sm-3 control-label">{{'BULK_DOMAINS_ALLOW_FOR_SSO_ACCOUNTS' | translate}}</label> class="col-sm-3 control-label">{{'PORTAL_CONFIGURATION.BULK_DOMAINS_ALLOW_FOR_SSO_ACCOUNTS' | translate}}</label>
<div class="col-sm-9 pd-top-7"> <div class="col-sm-9 pd-top-7">
<input type="checkbox" id="bulkDomainsAllowForSsoAccounts" name="bulkDomainsAllowForSsoAccounts" <input type="checkbox" id="bulkDomainsAllowForSsoAccounts" name="bulkDomainsAllowForSsoAccounts"
[(ngModel)]="this.configuration.bulkDomainsAllowForSsoAccounts" [(ngModel)]="this.configuration.bulkDomainsAllowForSsoAccounts"
...@@ -101,10 +100,11 @@ ...@@ -101,10 +100,11 @@
<div class="form-group"> <div class="form-group">
<label for="bulkDomainsSendEmailForNewAccounts" <label for="bulkDomainsSendEmailForNewAccounts"
class="col-sm-3 control-label">{{'BULK_DOMAINS_SEND_EMAIL_FOR_NEW_ACCOUNTS' | translate}}</label> class="col-sm-3 control-label">{{'PORTAL_CONFIGURATION.BULK_DOMAINS_SEND_EMAIL_FOR_NEW_ACCOUNTS' | translate}}</label>
<div class="col-sm-9 pd-top-7"> <div class="col-sm-9 pd-top-7">
<input type="checkbox" id="bulkDomainsSendEmailForNewAccounts" name="bulkDomainsSendEmailForNewAccounts" <input type="checkbox" id="bulkDomainsSendEmailForNewAccounts" name="bulkDomainsSendEmailForNewAccounts"
[(ngModel)]="this.configuration.bulkDomainsSendEmailForNewAccounts"> [(ngModel)]="this.configuration.bulkDomainsSendEmailForNewAccounts"
[checked]="this.configuration.bulkDomainsSendEmailForNewAccounts === true">
</div> </div>
</div> </div>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment