Skip to content

Commit

Permalink
Merge pull request #25 from hudec117/hotfix
Browse files Browse the repository at this point in the history
1.1.1 Hotfix
  • Loading branch information
hudec117 committed Feb 17, 2021
2 parents 4131789 + be23842 commit c89ec9c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/front-end/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@
const profileName = profileQueryResult.records[0]['FullName'];
// Get user permission sets
const permissionSetQuery = `SELECT PermissionSet.Name FROM PermissionSetAssignment WHERE AssigneeId = '${this.user.id}' AND PermissionSet.IsCustom = true AND PermissionSet.NamespacePrefix = ''`;
const permissionSetQuery = `SELECT PermissionSet.Name FROM PermissionSetAssignment WHERE AssigneeId = '${this.user.id}' AND PermissionSet.IsCustom = true AND PermissionSet.NamespacePrefix = '' AND PermissionSet.IsOwnedByProfile = false`;
const permissionSetQueryResult = await this.$salesforceService.query(permissionSetQuery);
if (!permissionSetQueryResult.success) {
this.alert = permissionSetQueryResult.error;
Expand Down
4 changes: 2 additions & 2 deletions src/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "Salesforce User Permission Report",
"name": "SUPR - Salesforce User Permission Report",
"description": "Salesforce User Permission Report allows you to see a report of all the permissions a user has and where they are set.",
"version": "1.1.0",
"version": "1.1.1",
"author": "Aurel Hudec",
"homepage_url": "https://github.com/hudec117/sf-user-perm-report",
"incognito": "split",
Expand Down
2 changes: 1 addition & 1 deletion src/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "salesforce-user-permission-report",
"version": "1.1.0",
"version": "1.1.1",
"description": "Salesforce User Permission Report allows you to see a report of all the permissions a user has and where they are set.",
"scripts": {
"dev": "webpack --watch --config webpack.dev.js",
Expand Down

0 comments on commit c89ec9c

Please sign in to comment.