Skip to content

Commit

Permalink
feat(permissions): Permsision Info Ordering Change (#3594)
Browse files Browse the repository at this point in the history
  • Loading branch information
Pritish Budhiraja authored Feb 8, 2024
1 parent 3a869a2 commit 96f82cb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/router/src/services/authorization/info.rs
Original file line number Diff line number Diff line change
Expand Up @@ -159,17 +159,17 @@ impl ModuleInfo {
module: module_name,
description,
permissions: PermissionInfo::new(&[
Permission::ThreeDsDecisionManagerWrite,
Permission::ThreeDsDecisionManagerRead,
Permission::ThreeDsDecisionManagerWrite,
]),
},

PermissionModule::SurchargeDecisionManager => Self {
module: module_name,
description,
permissions: PermissionInfo::new(&[
Permission::SurchargeDecisionManagerWrite,
Permission::SurchargeDecisionManagerRead,
Permission::SurchargeDecisionManagerWrite,
]),
},
PermissionModule::AccountCreate => Self {
Expand Down

0 comments on commit 96f82cb

Please sign in to comment.