Skip to content

Commit

Permalink
feat(api): disable authorization check, because of potential bug (to …
Browse files Browse the repository at this point in the history
…be investigated)
  • Loading branch information
pmoscode committed May 11, 2023
1 parent 0023056 commit 1ab7a87
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,8 @@ fun Route.walletRoutes(walletService: IWalletService) {
tags = setOf("Wallets")
)
) {
AuthorizationHandler.checkHasRightToCreateWallets(call)
// FIXME Investigate auth bug
// AuthorizationHandler.checkHasRightToCreateWallets(call)
try {
val walletToCreate = call.receive<WalletCreateDto>()
val createdWallet = walletService.createWallet(walletToCreate)
Expand Down

0 comments on commit 1ab7a87

Please sign in to comment.