Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2020-04-06 21:09:37 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2020-04-06 21:09:37 +0300
commit495c22d1245b6212b21b7379a542df73dfa77206 (patch)
tree5f0f82dd6c8c4fe1c4bd411f9e398b1a6eaaa69f /app/controllers/projects/static_site_editor_controller.rb
parentf3b1e07903a7f509b11ad7cf188fac46d98f77f6 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/controllers/projects/static_site_editor_controller.rb')
-rw-r--r--app/controllers/projects/static_site_editor_controller.rb10
1 files changed, 10 insertions, 0 deletions
diff --git a/app/controllers/projects/static_site_editor_controller.rb b/app/controllers/projects/static_site_editor_controller.rb
new file mode 100644
index 00000000000..597bfccf422
--- /dev/null
+++ b/app/controllers/projects/static_site_editor_controller.rb
@@ -0,0 +1,10 @@
+# frozen_string_literal: true
+
+class Projects::StaticSiteEditorController < Projects::ApplicationController
+ layout 'fullscreen'
+
+ prepend_before_action :authenticate_user!, only: [:show]
+
+ def show
+ end
+end