From 96a89cd0b56a2a5c01d5e3066f013b474988f01b Mon Sep 17 00:00:00 2001 From: Pavel Date: Sun, 21 Apr 2024 17:01:10 +0300 Subject: [PATCH] delete some methods --- repository/amo/amo.go | 28 ---------------------------- 1 file changed, 28 deletions(-) diff --git a/repository/amo/amo.go b/repository/amo/amo.go index e921e90..32a8287 100644 --- a/repository/amo/amo.go +++ b/repository/amo/amo.go @@ -273,13 +273,6 @@ func (r *AmoRepository) WebhookDelete(ctx context.Context) error { // методы pipelines -func (r *AmoRepository) UpdateListPipelines(ctx context.Context) error { - //TODO:IMPLEMENT ME - - return nil - -} - func (r *AmoRepository) GetPipelinesWithPagination(ctx context.Context, req *model.PaginationReq) (*model.UserListPipelinesResp, error) { rows, err := r.queries.GetPipelinesWithPagination(ctx, sqlcgen.GetPipelinesWithPaginationParams{ Column1: req.Page, @@ -385,13 +378,6 @@ func (r *AmoRepository) GetStepsWithPagination(ctx context.Context, req *model.P return &resp, nil } -func (r *AmoRepository) UpdateListSteps(ctx context.Context) error { - //TODO:IMPLEMENT ME - - return nil - -} - func (r *AmoRepository) CheckSteps(ctx context.Context, steps []model.Step) error { dollar1, err := json.Marshal(steps) if err != nil { @@ -472,13 +458,6 @@ func (r *AmoRepository) GetTagsWithPagination(ctx context.Context, req *model.Pa return &resp, nil } -func (r *AmoRepository) UpdateListTags(ctx context.Context) error { - //TODO:IMPLEMENT ME - - return nil - -} - func (r *AmoRepository) CheckTags(ctx context.Context, tags []model.Tag, tokenID string) error { column2, err := json.Marshal(tags) if err != nil { @@ -568,13 +547,6 @@ func (r *AmoRepository) GetFieldsWithPagination(ctx context.Context, req *model. return &resp, nil } -func (r *AmoRepository) UpdateListCustom(ctx context.Context) error { - //TODO:IMPLEMENT ME - - return nil - -} - func (r *AmoRepository) CheckFields(ctx context.Context, fields []model.Field, tokenID string) error { column2, err := json.Marshal(fields) if err != nil {