summaryrefslogtreecommitdiff
path: root/app/controllers/sandbox_controller.rb
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