1
0
Fork 0
forked from forgejo/forgejo

Add sync_on_commit option for push mirrors api (#22271) (#22292)

Backport of #22271
This commit is contained in:
Chongyi Zheng 2022-12-31 06:46:14 -05:00 committed by GitHub
parent 75f128ebf8
commit 443fd27a90
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 15 additions and 4 deletions

View file

@ -10,6 +10,7 @@ type CreatePushMirrorOption struct {
RemoteUsername string `json:"remote_username"`
RemotePassword string `json:"remote_password"`
Interval string `json:"interval"`
SyncOnCommit bool `json:"sync_on_commit"`
}
// PushMirror represents information of a push mirror
@ -22,4 +23,5 @@ type PushMirror struct {
LastUpdateUnix string `json:"last_update"`
LastError string `json:"last_error"`
Interval string `json:"interval"`
SyncOnCommit bool `json:"sync_on_commit"`
}