mirror of
https://codeberg.org/forgejo-aneksajo/forgejo-aneksajo.git
synced 2025-07-29 23:00:07 +02:00

**Backport:** https://codeberg.org/forgejo/forgejo/pulls/7337 - Massive replacement of changing `code.gitea.io/gitea` to `forgejo.org`. - Resolves forgejo/discussions#258 Co-authored-by: Gusted <postmaster@gusted.xyz> Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/7354 Reviewed-by: Gusted <gusted@noreply.codeberg.org> Co-authored-by: forgejo-backport-action <forgejo-backport-action@noreply.codeberg.org> Co-committed-by: forgejo-backport-action <forgejo-backport-action@noreply.codeberg.org>
29 lines
654 B
Go
29 lines
654 B
Go
// Copyright 2019 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package swagger
|
|
|
|
import (
|
|
api "forgejo.org/modules/structs"
|
|
)
|
|
|
|
// NotificationThread
|
|
// swagger:response NotificationThread
|
|
type swaggerNotificationThread struct {
|
|
// in:body
|
|
Body api.NotificationThread `json:"body"`
|
|
}
|
|
|
|
// NotificationThreadList
|
|
// swagger:response NotificationThreadList
|
|
type swaggerNotificationThreadList struct {
|
|
// in:body
|
|
Body []api.NotificationThread `json:"body"`
|
|
}
|
|
|
|
// Number of unread notifications
|
|
// swagger:response NotificationCount
|
|
type swaggerNotificationCount struct {
|
|
// in:body
|
|
Body api.NotificationCount `json:"body"`
|
|
}
|