client/src/app/+my-account/my-account-import-export/my-account-export.component.html
@if (isExportEnabled()) {
You can request an archive of your account containing:
The exported data will contain multiple directories:
Videos and playlists from collaborated channels, as well as your channel collaborators, will not be included in the archive.
You can only request one archive at a time.
@if (isEmailEnabled()) {
An email will be sent when the export archive is available.
} @if (userExports && userExports.length !== 0) {
| Date | State | Size | Expires on | |
|---|---|---|---|---|
| @for (export of userExports; track export) { | {{ export.createdAt | ptDate: 'medium' }} | {{ export.state.label }} | @if (export.size) { {{ export.size |
| } | ||||
| } |
} @else {
User export is not enabled by your administrator.
}
@if (hasAlreadyACompletedArchive()) { You already have an active archive. Requesting a new export archive will remove the current one. } @if (errorInModal) { {{ errorInModal }} } Including video files is required if you want to re-import your videos on another PeerTube website @if (archiveWeightEstimation) { If you include video files, the archive file will weigh approximately {{ archiveWeightEstimation | bytes }} }