delete some methods

This commit is contained in:
Pavel 2024-04-21 17:01:10 +03:00
parent 116a42d490
commit 96a89cd0b5

@ -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 {