mirror of
https://github.com/documize/community.git
synced 2025-07-23 07:09:43 +02:00
clone space!
This commit is contained in:
parent
866b4eba8a
commit
bf390ed0b9
18 changed files with 302 additions and 108 deletions
|
@ -91,3 +91,12 @@ type InvitationModel struct {
|
|||
Message string
|
||||
Recipients []string
|
||||
}
|
||||
|
||||
// NewSpaceRequest details the new space to create.
|
||||
type NewSpaceRequest struct {
|
||||
Name string `json:"name"`
|
||||
CloneID string `json:"cloneID"` // existing space to clone, empty = no cloning
|
||||
CopyTemplate bool `json:"copyTemplate"` // copy templates and reusable content blocks
|
||||
CopyPermission bool `json:"copyPermission"` // copy uer permissions
|
||||
CopyDocument bool `json:"copyDocument"` // copy all documents!
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue