~netlandish/gobwebs-ses-feedback

dc4e219c9e51d0cea55435f457b0a89513fc6c1f — Peter Sanchez 6 days ago afa3a5b master v0.2.0
gobwebs bump and udating for placeholder updates
3 files changed, 6 insertions(+), 6 deletions(-)

M email_notifications.go
M go.mod
M go.sum
M email_notifications.go => email_notifications.go +3 -3
@@ 31,7 31,7 @@ func GetEmailNotifications(ctx context.Context, opts *database.FilterOptions) ([
		rows, err := q.
			Columns("id", "email", "count", "notifications", "created_on", "updated_on").
			From("email_notifications").
			PlaceholderFormat(sq.Dollar).
			PlaceholderFormat(database.GetPlaceholderFormat()).
			RunWith(tx).
			QueryContext(ctx)
		if err != nil {


@@ 67,7 67,7 @@ func (n *EmailNotification) Store(ctx context.Context) error {
				Columns("email", "count", "notifications").
				Values(n.Email, n.Count, n.Notifications).
				Suffix(`RETURNING id, created_on, updated_on`).
				PlaceholderFormat(sq.Dollar).
				PlaceholderFormat(database.GetPlaceholderFormat()).
				RunWith(tx).
				ScanContext(ctx, &n.ID, &n.CreatedOn, &n.UpdatedOn)
		} else {


@@ 78,7 78,7 @@ func (n *EmailNotification) Store(ctx context.Context) error {
				Set("notifications", n.Notifications).
				Where("id = ?", n.ID).
				Suffix(`RETURNING (updated_on)`).
				PlaceholderFormat(sq.Dollar).
				PlaceholderFormat(database.GetPlaceholderFormat()).
				RunWith(tx).
				ScanContext(ctx, &n.UpdatedOn)
		}

M go.mod => go.mod +1 -1
@@ 5,7 5,7 @@ go 1.21
require (
	github.com/Masterminds/squirrel v1.5.4
	github.com/labstack/echo/v4 v4.13.3
	netlandish.com/x/gobwebs v0.1.1
	netlandish.com/x/gobwebs v0.1.2
)

require (

M go.sum => go.sum +2 -2
@@ 621,8 621,8 @@ honnef.co/go/tools v0.0.0-20190523083050-ea95bdfd59fc/go.mod h1:rf3lG4BRIbNafJWh
honnef.co/go/tools v0.0.1-2019.2.3/go.mod h1:a3bituU0lyd329TUQxRnasdCoJDkEUEAqEt0JzvZhAg=
honnef.co/go/tools v0.0.1-2020.1.3/go.mod h1:X/FiERA/W4tHapMX5mGpAtMSVEeEUOyHaw9vFzvIQ3k=
honnef.co/go/tools v0.0.1-2020.1.4/go.mod h1:X/FiERA/W4tHapMX5mGpAtMSVEeEUOyHaw9vFzvIQ3k=
netlandish.com/x/gobwebs v0.1.1 h1:7j9CbtvvVZFihd1M0uABC30EF/4xSctARJX5js8YORU=
netlandish.com/x/gobwebs v0.1.1/go.mod h1:RAf0VNiujzXen/pu0k6yyhvPWMgCY9tKD7ftXrkT53E=
netlandish.com/x/gobwebs v0.1.2 h1:ppNJhHQ4qCDO3adVwE4XVA1U+wl2dLdZXxQ0+sbJZrg=
netlandish.com/x/gobwebs v0.1.2/go.mod h1:RAf0VNiujzXen/pu0k6yyhvPWMgCY9tKD7ftXrkT53E=
petersanchez.com/x/carrier v0.2.3 h1:6ScWG2HVFqeqafQp2D9kChNdXYkou4rduzppc3SDYMg=
petersanchez.com/x/carrier v0.2.3/go.mod h1:GLiDI9OThDmruufk/VHlR6Ihvq/hIJQyA5beU6AFNYk=
rsc.io/binaryregexp v0.2.0/go.mod h1:qTv7/COck+e2FymRvadv62gMdZztPaShugOCi3I+8D8=

Do not follow this link