Skip to content

Commit

Permalink
Fix/idp mismatch (#42)
Browse files Browse the repository at this point in the history
* fix: config and broker idp mismatch

* chore: update dependencies
  • Loading branch information
mbystedt authored Aug 20, 2024
1 parent fe7c057 commit 5e3ca3b
Show file tree
Hide file tree
Showing 3 changed files with 55 additions and 55 deletions.
102 changes: 51 additions & 51 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
"@types/eslint__js": "^8.42.3",
"@types/mocha": "^10.0.7",
"@types/node": "^22.4.1",
"@typescript-eslint/eslint-plugin": "^8.1.0",
"@typescript-eslint/parser": "^8.1.0",
"@typescript-eslint/eslint-plugin": "^8.2.0",
"@typescript-eslint/parser": "^8.2.0",
"chai": "^5.1.1",
"eslint": "^9.9.0",
"eslint-config-prettier": "^9.1.0",
Expand All @@ -35,7 +35,7 @@
"ts-node": "^10.9.2",
"tslib": "^2.6.3",
"typescript": "^5.5.4",
"typescript-eslint": "^8.1.0"
"typescript-eslint": "^8.2.0"
},
"engines": {
"node": ">=8.0.0"
Expand Down
2 changes: 1 addition & 1 deletion src/services/impl/target-css.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ export class TargetCssService implements TargetService {
console.log(`No users to ${operation}`);
}
for (const user of users) {
const username = `${user.guid.toLowerCase()}@${user.domain}`;
const username = `${user.guid.toLowerCase()}@${integrationConfig.idp}`;
if (
await this.testIgnoreUser(integrationConfig.idp, environment, user.guid)
) {
Expand Down

0 comments on commit 5e3ca3b

Please sign in to comment.