feat: slected after buy

This commit is contained in:
2026-07-10 01:27:24 +03:30
parent fe0b63083c
commit ceb1c68174
4 changed files with 20 additions and 0 deletions
+5
View File
@@ -124,6 +124,11 @@ func (s *Service) BuyFrame(ctx context.Context, userID int64, frameID string) er
`INSERT INTO user_frames (user_id, frame_id) VALUES (?, ?)`, userID, frameID); err != nil {
return err
}
// خرید = مالکیت + انتخابِ خودکار.
if _, err := tx.ExecContext(ctx,
`UPDATE users SET selected_frame = ? WHERE id = ?`, frameID, userID); err != nil {
return err
}
return tx.Commit()
}