Skip to content

Commit

Permalink
Merge pull request #141 from Scalr/fix/SCALRCORE-29619
Browse files Browse the repository at this point in the history
SCALRCORE-29619 BE > Provider > Unable to link policy_group with sing…
  • Loading branch information
petroprotsakh committed Dec 22, 2023
2 parents b047faa + 699b731 commit 28d0d1f
Showing 1 changed file with 2 additions and 12 deletions.
14 changes: 2 additions & 12 deletions policy_group_environments.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@ import (
"errors"
"fmt"
"net/url"

"github.com/svanharmelen/jsonapi"
)

// Compile-time proof of interface implementation.
Expand Down Expand Up @@ -82,11 +80,7 @@ func (s *policyGroupEnvironment) Create(ctx context.Context, options PolicyGroup
return err
}
u := fmt.Sprintf("policy-groups/%s/relationships/environments", url.QueryEscape(options.PolicyGroupID))
payload, err := jsonapi.Marshal(options.PolicyGroupEnvironments)
if err != nil {
return err
}
req, err := s.client.newRequest("POST", u, payload)
req, err := s.client.newRequest("POST", u, options.PolicyGroupEnvironments)
if err != nil {
return err
}
Expand All @@ -100,11 +94,7 @@ func (s *policyGroupEnvironment) Update(ctx context.Context, options PolicyGroup
return err
}
u := fmt.Sprintf("policy-groups/%s/relationships/environments", url.QueryEscape(options.PolicyGroupID))
payload, err := jsonapi.Marshal(options.PolicyGroupEnvironments)
if err != nil {
return err
}
req, err := s.client.newRequest("PATCH", u, payload)
req, err := s.client.newRequest("PATCH", u, options.PolicyGroupEnvironments)
if err != nil {
return err
}
Expand Down

0 comments on commit 28d0d1f

Please sign in to comment.