fix: sql column access for invites

This commit is contained in:
2026-08-31 21:03:10 +02:00
parent 755ebefd30
commit 8b0d82ac24
+2 -2
View File
@@ -38,7 +38,7 @@ func (r *InviteRepo) CreateInvite(ctx context.Context, inviterUserID string, cod
func (r *InviteRepo) DeleteInvite(ctx context.Context, userID string, inviteID string) error { func (r *InviteRepo) DeleteInvite(ctx context.Context, userID string, inviteID string) error {
_, err := r.db.ExecContext(ctx, _, err := r.db.ExecContext(ctx,
"DELETE FROM invites WHERE id = $1 AND invitee_user_id = $2 AND consumed_at IS NULL", "DELETE FROM invites WHERE id = $1 AND inviter_user_id = $2 AND consumed_at IS NULL",
inviteID, userID, inviteID, userID,
) )
if err != nil { if err != nil {
@@ -83,7 +83,7 @@ func (r *InviteRepo) GetInvite(ctx context.Context, code string) (*domain.Invite
func (r *InviteRepo) GetInvites(ctx context.Context, userID string) ([]domain.Invite, error) { func (r *InviteRepo) GetInvites(ctx context.Context, userID string) ([]domain.Invite, error) {
rows, err := r.db.QueryContext(ctx, rows, err := r.db.QueryContext(ctx,
"SELECT id, code, expires_at, consumed_at FROM invites WHERE invitee_user_id=$1", "SELECT id, code, expires_at, consumed_at FROM invites WHERE inviter_user_id=$1",
userID, userID,
) )
if err != nil { if err != nil {