Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Export UI - Only present "save mapping" button to permissioned users #19733

Merged
merged 1 commit into from
Mar 9, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions ang/exportui.ang.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
'ang/exportui',
],
'basePages' => [],
'permissions' => ['administer CiviCRM'],
'requires' => [
'crmUi',
'crmUtil',
Expand Down
2 changes: 1 addition & 1 deletion ang/exportui/export.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<tr>
<td colspan="6">
<input class="crm-action-menu fa-plus crm-export-add-field" crm-ui-select="{data: getFields, placeholder: ts('Add field')}" ng-model="new.col" />
<span ng-if="data.columns.length">
<span ng-if="data.columns.length && perms.admin">
<button type="button" ng-click="saveMappingDialog()" crm-icon="fa-save">
{{:: ts('Save Fields') }}
</button>
Expand Down
3 changes: 3 additions & 0 deletions ang/exportui/exportui.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@
contact_type: '',
columns: []
};
$scope.perms = {
admin: CRM.checkPerm('administer CiviCRM')
};
// For the "add new field" dropdown
$scope.new = {col: ''};
var contactTypes = _.transform($scope.contact_types, function(result, type) {
Expand Down