* Bulk export: add roles and permission schemes * Update mmctl docs * Fix log * Update mmctl tests * Update mmctl unit tests * Refactor to avoid extra calls * Update translations * Add test case * Fix test * Fix test
17 строки
468 B
Go
17 строки
468 B
Go
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
package model
|
|
|
|
// ExportDataDir is the name of the directory were to store additional data
|
|
// included with the export (e.g. file attachments).
|
|
const ExportDataDir = "data"
|
|
|
|
type BulkExportOpts struct {
|
|
IncludeAttachments bool
|
|
IncludeProfilePictures bool
|
|
IncludeArchivedChannels bool
|
|
IncludeRolesAndSchemes bool
|
|
CreateArchive bool
|
|
}
|