mirror of
https://github.com/go-gitea/gitea.git
synced 2024-11-01 08:47:40 -04:00
6b0df6d8da
Close #5666 Add APIs for getting activity feeds.
16 lines
310 B
Go
16 lines
310 B
Go
// Copyright 2023 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package swagger
|
|
|
|
import (
|
|
api "code.gitea.io/gitea/modules/structs"
|
|
)
|
|
|
|
// ActivityFeedsList
|
|
// swagger:response ActivityFeedsList
|
|
type swaggerActivityFeedsList struct {
|
|
// in:body
|
|
Body []api.Activity `json:"body"`
|
|
}
|