Removed new account button when in SSPI auth.

This commit is contained in:
Ylian Saint-Hilaire 2019-02-28 16:50:39 -08:00
parent 6c851c9a6d
commit cc1ab15d43
2 changed files with 5 additions and 5 deletions

View File

@ -1,6 +1,6 @@
{ {
"name": "meshcentral", "name": "meshcentral",
"version": "0.2.9-i", "version": "0.2.9-j",
"keywords": [ "keywords": [
"Remote Management", "Remote Management",
"Intel AMT", "Intel AMT",

View File

@ -300,12 +300,11 @@
<td class=h1></td> <td class=h1></td>
<td class=style14> <td class=style14>
<div style="float:right"> <div style="float:right">
<input type=button onclick=showUserBroadcastDialog() value="Broadcast" />&nbsp; <input type=button onclick=showUserBroadcastDialog() style=margin-right:6px value="Broadcast" />
</div> </div>
<div> <div>
&nbsp; <input id=UserNewAccountButton type=button style=margin-left:6px onclick=showCreateNewAccountDialog() value="New Account..." />
<input type=button onclick=showCreateNewAccountDialog() value="New Account..." />&nbsp; <input id=UserSearchInput type=text style=width:120px;margin-left:6px placeholder=Filter onchange=onUserSearchInputChanged() onkeyup=onUserSearchInputChanged() autocomplete=off onfocus=onUserSearchFocus(1) onblur=onUserSearchFocus(0) />
<input id=UserSearchInput type=text style=width:120px placeholder=Filter onchange=onUserSearchInputChanged() onkeyup=onUserSearchInputChanged() autocomplete=off onfocus=onUserSearchFocus(1) onblur=onUserSearchFocus(0) />&nbsp;
</div> </div>
</td> </td>
<td class=h2></td> <td class=h2></td>
@ -6346,6 +6345,7 @@
function updateUsers() { function updateUsers() {
QV('MainMenuMyUsers', (users != null) && ((features & 4) == 0)); QV('MainMenuMyUsers', (users != null) && ((features & 4) == 0));
QV('LeftMenuMyUsers', (users != null) && ((features & 4) == 0)); QV('LeftMenuMyUsers', (users != null) && ((features & 4) == 0));
QV('UserNewAccountButton', ((features & 4) == 0) && (serverinfo.domainauth == false));
if ((users == null) || ((features & 4) != 0)) { QH('p3users', ''); return; } if ((users == null) || ((features & 4) != 0)) { QH('p3users', ''); return; }
// Sort the list of user id's // Sort the list of user id's