diff options
Diffstat (limited to 'modules/structs/mirror.go')
-rw-r--r-- | modules/structs/mirror.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/modules/structs/mirror.go b/modules/structs/mirror.go index 21e7751f76..55cd133a4f 100644 --- a/modules/structs/mirror.go +++ b/modules/structs/mirror.go @@ -9,6 +9,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 @@ -21,4 +22,5 @@ type PushMirror struct { LastUpdateUnix string `json:"last_update"` LastError string `json:"last_error"` Interval string `json:"interval"` + SyncOnCommit bool `json:"sync_on_commit"` } |