blob: a48b2b8a3143d427bae673ab43bffe0312a9feda (
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 # rubocop:todo Gitlab/AvoidFeatureCategoryNotOwned
def mermaid
render layout: false
end
end
|