2019-05-11 10:21:34 +00:00
|
|
|
// Copyright 2017 The Gitea Authors. All rights reserved.
|
2022-11-27 18:20:29 +00:00
|
|
|
// SPDX-License-Identifier: MIT
|
2019-05-11 10:21:34 +00:00
|
|
|
|
|
|
|
package structs
|
|
|
|
|
|
|
|
import (
|
|
|
|
"time"
|
|
|
|
)
|
|
|
|
|
|
|
|
// WatchInfo represents an API watch status of one repository
|
|
|
|
type WatchInfo struct {
|
2023-07-04 18:36:08 +00:00
|
|
|
Subscribed bool `json:"subscribed"`
|
|
|
|
Ignored bool `json:"ignored"`
|
|
|
|
Reason any `json:"reason"`
|
|
|
|
CreatedAt time.Time `json:"created_at"`
|
|
|
|
URL string `json:"url"`
|
|
|
|
RepositoryURL string `json:"repository_url"`
|
2019-05-11 10:21:34 +00:00
|
|
|
}
|