mirror of
https://github.com/multica-ai/multica.git
synced 2026-06-17 03:38:32 +02:00
Users can now mute specific notification categories (assignments, status changes, comments & mentions, priority/due-date updates, agent activity) from Settings > Notifications. Muted event types are silently filtered at notification creation time — no inbox items are created for muted groups. - Add notification_preference table (migration 064) - Add GET/PUT /api/notification-preferences endpoints - Filter notifications in notifyIssueSubscribers, notifyDirect, and notifyMentionedMembers based on user preferences - Add Notifications tab in Settings with per-group toggle switches
99 lines
2.8 KiB
Go
99 lines
2.8 KiB
Go
// Code generated by sqlc. DO NOT EDIT.
|
|
// versions:
|
|
// sqlc v1.30.0
|
|
// source: notification_preference.sql
|
|
|
|
package db
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/jackc/pgx/v5/pgtype"
|
|
)
|
|
|
|
const getNotificationPreference = `-- name: GetNotificationPreference :one
|
|
SELECT id, workspace_id, user_id, preferences, updated_at FROM notification_preference
|
|
WHERE workspace_id = $1 AND user_id = $2
|
|
`
|
|
|
|
type GetNotificationPreferenceParams struct {
|
|
WorkspaceID pgtype.UUID `json:"workspace_id"`
|
|
UserID pgtype.UUID `json:"user_id"`
|
|
}
|
|
|
|
func (q *Queries) GetNotificationPreference(ctx context.Context, arg GetNotificationPreferenceParams) (NotificationPreference, error) {
|
|
row := q.db.QueryRow(ctx, getNotificationPreference, arg.WorkspaceID, arg.UserID)
|
|
var i NotificationPreference
|
|
err := row.Scan(
|
|
&i.ID,
|
|
&i.WorkspaceID,
|
|
&i.UserID,
|
|
&i.Preferences,
|
|
&i.UpdatedAt,
|
|
)
|
|
return i, err
|
|
}
|
|
|
|
const listNotificationPreferencesByUsers = `-- name: ListNotificationPreferencesByUsers :many
|
|
SELECT id, workspace_id, user_id, preferences, updated_at FROM notification_preference
|
|
WHERE workspace_id = $1 AND user_id = ANY($2::uuid[])
|
|
`
|
|
|
|
type ListNotificationPreferencesByUsersParams struct {
|
|
WorkspaceID pgtype.UUID `json:"workspace_id"`
|
|
UserIds []pgtype.UUID `json:"user_ids"`
|
|
}
|
|
|
|
func (q *Queries) ListNotificationPreferencesByUsers(ctx context.Context, arg ListNotificationPreferencesByUsersParams) ([]NotificationPreference, error) {
|
|
rows, err := q.db.Query(ctx, listNotificationPreferencesByUsers, arg.WorkspaceID, arg.UserIds)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
defer rows.Close()
|
|
items := []NotificationPreference{}
|
|
for rows.Next() {
|
|
var i NotificationPreference
|
|
if err := rows.Scan(
|
|
&i.ID,
|
|
&i.WorkspaceID,
|
|
&i.UserID,
|
|
&i.Preferences,
|
|
&i.UpdatedAt,
|
|
); err != nil {
|
|
return nil, err
|
|
}
|
|
items = append(items, i)
|
|
}
|
|
if err := rows.Err(); err != nil {
|
|
return nil, err
|
|
}
|
|
return items, nil
|
|
}
|
|
|
|
const upsertNotificationPreference = `-- name: UpsertNotificationPreference :one
|
|
INSERT INTO notification_preference (workspace_id, user_id, preferences)
|
|
VALUES ($1, $2, $3)
|
|
ON CONFLICT (workspace_id, user_id)
|
|
DO UPDATE SET preferences = $3, updated_at = now()
|
|
RETURNING id, workspace_id, user_id, preferences, updated_at
|
|
`
|
|
|
|
type UpsertNotificationPreferenceParams struct {
|
|
WorkspaceID pgtype.UUID `json:"workspace_id"`
|
|
UserID pgtype.UUID `json:"user_id"`
|
|
Preferences []byte `json:"preferences"`
|
|
}
|
|
|
|
func (q *Queries) UpsertNotificationPreference(ctx context.Context, arg UpsertNotificationPreferenceParams) (NotificationPreference, error) {
|
|
row := q.db.QueryRow(ctx, upsertNotificationPreference, arg.WorkspaceID, arg.UserID, arg.Preferences)
|
|
var i NotificationPreference
|
|
err := row.Scan(
|
|
&i.ID,
|
|
&i.WorkspaceID,
|
|
&i.UserID,
|
|
&i.Preferences,
|
|
&i.UpdatedAt,
|
|
)
|
|
return i, err
|
|
}
|