mirror of
https://github.com/mattermost/mattermost.git
synced 2026-02-03 20:40:00 -05:00
* 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
16 lines
468 B
Go
16 lines
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
|
|
}
|