Skip to content

Commit

Permalink
feat:用户个人视角 权限管理优化 #11138
Browse files Browse the repository at this point in the history
  • Loading branch information
fcfang123 committed Dec 18, 2024
1 parent 2cca032 commit df24827
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ class RbacPermissionHandoverApplicationService(
"handoverOverviews" to handoverOverviewContentOfEmail,
"handoverOverviewContentOfRtx" to handoverOverviewContentOfRtx,
"table" to handoverOverviewTable,
"url" to handoverApplicationUrl
"url" to String.format(handoverApplicationUrl, flowNo)
)
// 发邮件
val request = SendNotifyMessageTemplateRequest(
Expand Down Expand Up @@ -353,7 +353,7 @@ class RbacPermissionHandoverApplicationService(
).map { it.copy(approver = flowNo2Approver[it.flowNo]) }
}

private val handoverApplicationUrl = "${config.devopsHostGateway}/console/permission/my-handover"
private val handoverApplicationUrl = "${config.devopsHostGateway}/console/permission/my-handover?type=handoverToMe&flowNo=%s"

companion object {
private val logger = LoggerFactory.getLogger(RbacPermissionHandoverApplicationService::class.java)
Expand Down

0 comments on commit df24827

Please sign in to comment.