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

sandbox_controller.rb « controllers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a87c2b38e600d81cfb46cdb3e1f3f5a7f96a51e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

class SandboxController < ApplicationController # rubocop:disable Gitlab/NamespacedClass
  skip_before_action :authenticate_user!

  feature_category :not_owned

  def mermaid
    render layout: false
  end
end