gitlab-org--gitlab-foss/app/controllers/projects/static_site_editor_controll...

11 lines
212 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class Projects::StaticSiteEditorController < Projects::ApplicationController
layout 'fullscreen'
prepend_before_action :authenticate_user!, only: [:show]
def show
end
end