Skip to content

Commit

Permalink
removed unnecessary realm name
Browse files Browse the repository at this point in the history
  • Loading branch information
harshadk-sourcefuse committed May 13, 2024
1 parent 41f5c4f commit 547cd3a
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 2 deletions.
27 changes: 27 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{
"name": "j-Arc",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"prettier:fix": "prettier --write 'sandbox/**/*.java'"
},
"private": true,
"devDependencies": {
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"husky": "^8.0.3",
"prettier": "^3.0.3",
"prettier-plugin-java": "^2.3.1"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog",
"disableScopeLowerCase": true
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -116,8 +116,7 @@ public SecurityFilterChain swaggerFilterChain(HttpSecurity http)
.authorizeHttpRequests(authorize ->
authorize.anyRequest().hasRole(SWAGGER_ROLE)
)
.httpBasic()
.realmName("MyApp");
.httpBasic();
return http.build();
}

Expand Down

0 comments on commit 547cd3a

Please sign in to comment.