Skip to content

Commit

Permalink
bug:研发商店组件审核发布时录入T_STORE_RELEASE表的首次发布人有误 TencentBlueKing#11366
Browse files Browse the repository at this point in the history
  • Loading branch information
Kzhou991 committed Jan 14, 2025
1 parent c24e116 commit 6fe98e7
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -71,5 +71,4 @@ interface OpStorePublishersResource {
firstPublisher: String
): Result<Boolean>


}
Original file line number Diff line number Diff line change
Expand Up @@ -1060,7 +1060,7 @@ abstract class AtomReleaseServiceImpl @Autowired constructor() : AtomReleaseServ
storeReleaseCreateRequest = StoreReleaseCreateRequest(
storeCode = atomCode,
storeType = StoreTypeEnum.ATOM,
latestUpgrader =atomReleaseRequest.publisher?:userId,
latestUpgrader = atomReleaseRequest.publisher ?: userId,
latestUpgradeTime = pubTime
)
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,9 +75,13 @@ interface PublishersDataService {
*/
fun refreshPersonPublisherGroup(): Boolean


/**
* 修改组件首个发布人
*/
fun updateComponentFirstPublisher(userId: String, storeCode: String, storeType: StoreTypeEnum, firstPublisher: String): Boolean
fun updateComponentFirstPublisher(
userId: String,
storeCode: String,
storeType: StoreTypeEnum,
firstPublisher: String
): Boolean
}

0 comments on commit 6fe98e7

Please sign in to comment.