summaryrefslogtreecommitdiff
path: root/lib/backup/pages.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/backup/pages.rb')
-rw-r--r--lib/backup/pages.rb18
1 files changed, 0 insertions, 18 deletions
diff --git a/lib/backup/pages.rb b/lib/backup/pages.rb
deleted file mode 100644
index ebed6820724..00000000000
--- a/lib/backup/pages.rb
+++ /dev/null
@@ -1,18 +0,0 @@
-# frozen_string_literal: true
-
-module Backup
- class Pages < Backup::Files
- # pages used to deploy tmp files to this path
- # if some of these files are still there, we don't need them in the backup
- LEGACY_PAGES_TMP_PATH = '@pages.tmp'
-
- def initialize(progress)
- super(progress, 'pages', Gitlab.config.pages.path, excludes: [LEGACY_PAGES_TMP_PATH])
- end
-
- override :human_name
- def human_name
- _('pages')
- end
- end
-end