[PR #117] [CLOSED] Add Backup Templates Plugin #120

Closed
opened 2026-05-07 00:18:13 +02:00 by BreizhHardware · 0 comments

📋 Pull Request Information

Original PR: https://github.com/pelican-dev/plugins/pull/117
Author: @Ebnater
Created: 3/12/2026
Status: Closed

Base: mainHead: ebnater/backup-templates


📝 Commits (7)

  • ad6e495 Add Backup Templates Plugin
  • 86c2b7e fix: removed meta key from testing
  • 1e66b32 implement backup templates permissions and policy
  • f78ccf9 fix language file not loading for backup templates plugin
  • 31869bc fix pint issue
  • 7e7941d fix pint issue again
  • 06f21f4 added new plugin to README

📊 Changes

15 files changed (+1130 additions, -6 deletions)

View changed files

📝 README.md (+7 -6)
backup-templates/LICENSE (+674 -0)
backup-templates/README.md (+12 -0)
backup-templates/database/migrations/001_create_backup_templates_table.php (+30 -0)
backup-templates/lang/de/server/user.php (+8 -0)
backup-templates/lang/de/strings.php (+22 -0)
backup-templates/lang/en/server/user.php (+8 -0)
backup-templates/lang/en/strings.php (+22 -0)
backup-templates/plugin.json (+17 -0)
backup-templates/src/BackupTemplatesPlugin.php (+23 -0)
backup-templates/src/Filament/Server/Resources/BackupTemplates/BackupTemplateResource.php (+103 -0)
backup-templates/src/Filament/Server/Resources/BackupTemplates/Pages/ListBackupTemplates.php (+43 -0)
backup-templates/src/Models/BackupTemplate.php (+28 -0)
backup-templates/src/Policies/BackupTemplatePolicy.php (+36 -0)
backup-templates/src/Providers/BackupTemplatesPluginProvider.php (+97 -0)

📄 Description

This plugin adds per-server backup templates that can be selected when creating a backup. Selecting a template automatically fills the ignored paths field with the saved preset.

Summary by CodeRabbit

  • New Features
    • Added Backup Templates feature enabling per-server template creation and management
    • Templates support custom ignored paths to exclude files/directories from backups
    • Templates can be assigned when creating backups for consistent, streamlined configuration
    • Full localization support in English and German

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/pelican-dev/plugins/pull/117 **Author:** [@Ebnater](https://github.com/Ebnater) **Created:** 3/12/2026 **Status:** ❌ Closed **Base:** `main` ← **Head:** `ebnater/backup-templates` --- ### 📝 Commits (7) - [`ad6e495`](https://github.com/pelican-dev/plugins/commit/ad6e49559577b4d42bf80ab7b7ec2fd1c541d8e1) Add Backup Templates Plugin - [`86c2b7e`](https://github.com/pelican-dev/plugins/commit/86c2b7ed94a065fbd6e2ce60c62f673fe40e580a) fix: removed meta key from testing - [`1e66b32`](https://github.com/pelican-dev/plugins/commit/1e66b32b2e45ea86eb53dfd139269999e133ec33) implement backup templates permissions and policy - [`f78ccf9`](https://github.com/pelican-dev/plugins/commit/f78ccf987fbe45e65b8b8f29844ddad21acc5e90) fix language file not loading for backup templates plugin - [`31869bc`](https://github.com/pelican-dev/plugins/commit/31869bc95f8d954a894d6594e2641a60fc2f105f) fix pint issue - [`7e7941d`](https://github.com/pelican-dev/plugins/commit/7e7941ddd152a8d7d4617d9e030de596f1a3eb50) fix pint issue again - [`06f21f4`](https://github.com/pelican-dev/plugins/commit/06f21f482c867243cb9d6d5f4d76f353fb4fbd05) added new plugin to README ### 📊 Changes **15 files changed** (+1130 additions, -6 deletions) <details> <summary>View changed files</summary> 📝 `README.md` (+7 -6) ➕ `backup-templates/LICENSE` (+674 -0) ➕ `backup-templates/README.md` (+12 -0) ➕ `backup-templates/database/migrations/001_create_backup_templates_table.php` (+30 -0) ➕ `backup-templates/lang/de/server/user.php` (+8 -0) ➕ `backup-templates/lang/de/strings.php` (+22 -0) ➕ `backup-templates/lang/en/server/user.php` (+8 -0) ➕ `backup-templates/lang/en/strings.php` (+22 -0) ➕ `backup-templates/plugin.json` (+17 -0) ➕ `backup-templates/src/BackupTemplatesPlugin.php` (+23 -0) ➕ `backup-templates/src/Filament/Server/Resources/BackupTemplates/BackupTemplateResource.php` (+103 -0) ➕ `backup-templates/src/Filament/Server/Resources/BackupTemplates/Pages/ListBackupTemplates.php` (+43 -0) ➕ `backup-templates/src/Models/BackupTemplate.php` (+28 -0) ➕ `backup-templates/src/Policies/BackupTemplatePolicy.php` (+36 -0) ➕ `backup-templates/src/Providers/BackupTemplatesPluginProvider.php` (+97 -0) </details> ### 📄 Description This plugin adds per-server backup templates that can be selected when creating a backup. Selecting a template automatically fills the ignored paths field with the saved preset. <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit * **New Features** * Added Backup Templates feature enabling per-server template creation and management * Templates support custom ignored paths to exclude files/directories from backups * Templates can be assigned when creating backups for consistent, streamlined configuration * Full localization support in English and German <!-- end of auto-generated comment: release notes by coderabbit.ai --> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
BreizhHardware 2026-05-07 00:18:13 +02:00
Sign in to join this conversation.
No labels
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/plugins#120
No description provided.