Skip to content

Commit

Permalink
项目支持关联运营产品和根据运营产品搜索 #9636
Browse files Browse the repository at this point in the history
  • Loading branch information
fcfang123 committed Nov 13, 2023
1 parent 191bea5 commit 2276307
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,12 @@ class SimpleProjectServiceImpl @Autowired constructor(
override fun isRbacPermission(projectId: String): Boolean = true

override fun getOperationalProducts(): List<OperationalProductVO> {
return emptyList()
return listOf(
OperationalProductVO(
productId = -1,
productName = "其他"
)
)
}

override fun buildRouterTag(routerTag: String?): String? = null
Expand Down

0 comments on commit 2276307

Please sign in to comment.