You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@devlake.apache.org by ab...@apache.org on 2022/10/28 07:56:05 UTC

[incubator-devlake] branch release-v0.14 updated: feat: the GetBlueprintPipelines interface support page... params (#3611)

This is an automated email from the ASF dual-hosted git repository.

abeizn pushed a commit to branch release-v0.14
in repository https://gitbox.apache.org/repos/asf/incubator-devlake.git


The following commit(s) were added to refs/heads/release-v0.14 by this push:
     new ee66467b feat: the GetBlueprintPipelines interface support page... params (#3611)
ee66467b is described below

commit ee66467be63903ca954d6f6661502a8dd6f83965
Author: abeizn <zi...@merico.dev>
AuthorDate: Fri Oct 28 15:46:42 2022 +0800

    feat: the GetBlueprintPipelines interface support page... params (#3611)
    
    * feat: the GetBlueprintPipelines interface support page/pagesize/status/pending params
    
    * feat: the GetBlueprintPipelines interface support page... params
    
    * feat: the GetBlueprintPipelines interface support page... params
    
    Co-authored-by: Warren Chen <yi...@merico.dev>
---
 services/pipeline.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/services/pipeline.go b/services/pipeline.go
index 54806fce..acee2b29 100644
--- a/services/pipeline.go
+++ b/services/pipeline.go
@@ -46,7 +46,7 @@ type PipelineQuery struct {
 	Pending     int    `form:"pending"`
 	Page        int    `form:"page"`
 	PageSize    int    `form:"pageSize"`
-	BlueprintId uint64 `form:"blueprint_id"`
+	BlueprintId uint64 `uri:"blueprintId" form:"blueprint_id"`
 }
 
 func pipelineServiceInit() {