2022-03-02 08:16:31 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class SandboxController < ApplicationController # rubocop:disable Gitlab/NamespacedClass
|
|
|
|
skip_before_action :authenticate_user!
|
|
|
|
|
2022-06-21 17:19:12 +05:30
|
|
|
feature_category :not_owned # rubocop:todo Gitlab/AvoidFeatureCategoryNotOwned
|
2022-03-02 08:16:31 +05:30
|
|
|
|
|
|
|
def mermaid
|
|
|
|
render layout: false
|
|
|
|
end
|
|
|
|
end
|