Skip to content

Commit

Permalink
refactor(api): update integrations status endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
AiraNadih committed Oct 15, 2024
1 parent c9dd59c commit 4e6c07a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ func (c *Client) MarkAllAsRead(userID int64) error {

// FetchIntegrationsStatus fetches the integrations status for a user.
func (c *Client) FetchIntegrationsStatus() (bool, error) {
body, err := c.request.Get(fmt.Sprintf("/v1/users/integrations/status"))
body, err := c.request.Get("/v1/users/integrations/status")
if err != nil {
return false, err
}
Expand Down

0 comments on commit 4e6c07a

Please sign in to comment.