mirror of https://github.com/apache/archiva.git
roles screen add a column to save modified roles
git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@1243439 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
b27fba7bbc
commit
bdbbc8984a
|
@ -179,6 +179,17 @@ $(function() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
updateRole=function(modifiedRole){
|
||||||
|
if (modifiedRole.modified()){
|
||||||
|
modifiedRole.updateDescription();
|
||||||
|
modifiedRole.modified(false);
|
||||||
|
}
|
||||||
|
if (modifiedRole.usersModified()){
|
||||||
|
modifiedRole.updateUsers();
|
||||||
|
modifiedRole.usersModified(false);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
displayRolesGrid = function(){
|
displayRolesGrid = function(){
|
||||||
|
|
|
@ -190,6 +190,7 @@
|
||||||
<th>${ columnDefinition.headerText }</th>
|
<th>${ columnDefinition.headerText }</th>
|
||||||
{{/each}}
|
{{/each}}
|
||||||
<th>${$.i18n.prop('edit')}</th>
|
<th>${$.i18n.prop('edit')}</th>
|
||||||
|
<th>${$.i18n.prop('save')}</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
|
@ -204,6 +205,11 @@
|
||||||
<td>
|
<td>
|
||||||
<a id="edit-role-${row.name()}" href="#" data-bind="click: function(){ editRole(row) }">${$.i18n.prop('edit')}</a>
|
<a id="edit-role-${row.name()}" href="#" data-bind="click: function(){ editRole(row) }">${$.i18n.prop('edit')}</a>
|
||||||
</td>
|
</td>
|
||||||
|
<td>
|
||||||
|
{{if row.modified()}}
|
||||||
|
<a href="#" class="btn" data-bind="click: function(){ updateRole(row) }">${$.i18n.prop('save')}</a>
|
||||||
|
{{/if}}
|
||||||
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
{{/each}}
|
{{/each}}
|
||||||
</tbody>
|
</tbody>
|
||||||
|
|
Loading…
Reference in New Issue