Skip to content

Commit bc4feb2

Browse files
committed
Merge branch 'master' into darin/dexcom-slowdown
2 parents 355b240 + ab5c6a5 commit bc4feb2

4 files changed

Lines changed: 70 additions & 72 deletions

File tree

auth/service/api/v1/oauth.go

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@ import (
1111

1212
"github.com/ant0ine/go-json-rest/rest"
1313

14-
confirmationClient "github.com/tidepool-org/hydrophone/client"
15-
1614
"github.com/tidepool-org/platform/auth"
1715
"github.com/tidepool-org/platform/errors"
1816
"github.com/tidepool-org/platform/log"
@@ -155,7 +153,7 @@ func (r *Router) OAuthProviderRedirectGet(res rest.ResponseWriter, req *rest.Req
155153
}
156154

157155
// Include custodial account signup credentials in redirect URL query, if applicable
158-
confirmation, err := r.ConfirmationClient().GetAccountSignupConfirmationWithResponse(ctx, confirmationClient.UserId(restrictedToken.UserID))
156+
confirmation, err := r.ConfirmationClient().GetAccountSignupConfirmationWithResponse(ctx, restrictedToken.UserID)
159157
if err != nil {
160158
r.htmlOnError(res, req, err)
161159
return

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ require (
3030
github.com/tidepool-org/clinic/client v0.0.0-20250122123230-f89e2b1540dc
3131
github.com/tidepool-org/devices/api v0.0.0-20241122210913-d66c72510ddb
3232
github.com/tidepool-org/go-common v0.12.3-0.20250812104912-8c5789d87f55
33-
github.com/tidepool-org/hydrophone/client v0.0.0-20250317164837-a8cd51fd6677
33+
github.com/tidepool-org/hydrophone/client v0.0.0-20260311102224-0a387435e093
3434
github.com/tidepool-org/platform-plugin-abbott v0.0.0
3535
github.com/urfave/cli v1.22.16
3636
go.mongodb.org/mongo-driver v1.17.3

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -264,8 +264,8 @@ github.com/tidepool-org/devices/api v0.0.0-20241122210913-d66c72510ddb h1:SgtVs9
264264
github.com/tidepool-org/devices/api v0.0.0-20241122210913-d66c72510ddb/go.mod h1:xuQ8k0mLR1ZyEmwe/m0v2BuXctqQuCZeR43urSQpTUM=
265265
github.com/tidepool-org/go-common v0.12.3-0.20250812104912-8c5789d87f55 h1:xgYwNbURhgZRig2gTyNyt/4KDiF/PT0Qlmkc76Usz2M=
266266
github.com/tidepool-org/go-common v0.12.3-0.20250812104912-8c5789d87f55/go.mod h1:v93bMGDHiHcltQY5s7LYTTEe3u9CiGWqBFKah6C0650=
267-
github.com/tidepool-org/hydrophone/client v0.0.0-20250317164837-a8cd51fd6677 h1:P3C1YTvLHu7NFHOeh6NDPo5ieVXcF9a+SY4FTToR8B4=
268-
github.com/tidepool-org/hydrophone/client v0.0.0-20250317164837-a8cd51fd6677/go.mod h1:gon+x+jAh8DZZ2hD23fBWqrYwOizVSwIBbxEsuXCbZ4=
267+
github.com/tidepool-org/hydrophone/client v0.0.0-20260311102224-0a387435e093 h1:yuyVTZbXoO+uSIKNDjDjVc65x/q+lQXU1oUovnsT1RE=
268+
github.com/tidepool-org/hydrophone/client v0.0.0-20260311102224-0a387435e093/go.mod h1:gon+x+jAh8DZZ2hD23fBWqrYwOizVSwIBbxEsuXCbZ4=
269269
github.com/tidwall/gjson v1.18.0 h1:FIDeeyB800efLX89e5a8Y0BNH+LOngJyGrIWxG2FKQY=
270270
github.com/tidwall/gjson v1.18.0/go.mod h1:/wbyibRr2FHMks5tjHJ5F8dMZh3AcwJEMf5vlfC0lxk=
271271
github.com/tidwall/match v1.1.1 h1:+Ho715JplO36QYgwN9PGYNhgZvoUSc9X2c80KVTi+GA=

0 commit comments

Comments
 (0)