2022-01-11 10:15:55 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class SandboxController < ApplicationController # rubocop:disable Gitlab/NamespacedClass
|
|
|
|
skip_before_action :authenticate_user!
|
|
|
|
|
2022-04-05 08:10:23 -04:00
|
|
|
feature_category :not_owned # rubocop:todo Gitlab/AvoidFeatureCategoryNotOwned
|
2022-01-11 10:15:55 -05:00
|
|
|
|
|
|
|
def mermaid
|
|
|
|
render layout: false
|
|
|
|
end
|
|
|
|
end
|