mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-09-12 22:26:12 -05:00
Scrims (#2211)
* Initial * Progress * Initial UI * Can submit request * Progress * Show text if no scrims * Can cancel request, tabs * Delete post * Popover if can't delete * Request rows * Progress * Scrim page initial * Fix migration order * Progress * Progress * Works again * Make it compile * Make it compile again * Work * Progress * Progress * Progress * Associations initial * Association visibility work * notFoundVisibility form fields initial * Progress * Association leave/join + reset invite code * Progress * Select test * Merge branch 'rewrite' into scrims * Remeda for groupBy * Select with search * Outline styling for select * Select done? * Fix prop names * Paginated badges * Less important * Select no results * Handle limiting select width * UserSearch non-working * Fix problem from merge * Remove UserSearch for now * Remove todo * Flaggable * Remove TODOs * i18n start + styling * Progress * i18n done * Add association e2e test * E2E tests * Done? * Couple leftovers
This commit is contained in:
@@ -23,9 +23,10 @@ export function insert(
|
||||
await trx
|
||||
.insertInto("NotificationUser")
|
||||
.values(
|
||||
users.map(({ userId }) => ({
|
||||
users.map(({ userId, seen }) => ({
|
||||
userId,
|
||||
notificationId: inserted.id,
|
||||
seen,
|
||||
})),
|
||||
)
|
||||
.execute();
|
||||
|
||||
Reference in New Issue
Block a user