diff options
Diffstat (limited to 'modules/structs/fork.go')
-rw-r--r-- | modules/structs/fork.go | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/modules/structs/fork.go b/modules/structs/fork.go new file mode 100644 index 0000000000..dd6e24e8b7 --- /dev/null +++ b/modules/structs/fork.go @@ -0,0 +1,11 @@ +// Copyright 2016 The Gitea Authors. All rights reserved. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. + +package structs + +// CreateForkOption options for creating a fork +type CreateForkOption struct { + // organization name, if forking into an organization + Organization *string `json:"organization"` +} |