20 lines
432 B
Ruby
20 lines
432 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
module Projects
|
||
|
module Integrations
|
||
|
class ShimosController < Projects::ApplicationController
|
||
|
feature_category :integrations
|
||
|
|
||
|
before_action :ensure_renderable
|
||
|
|
||
|
def show; end
|
||
|
|
||
|
private
|
||
|
|
||
|
def ensure_renderable
|
||
|
render_404 unless Feature.enabled?(:shimo_integration, project) && project.has_shimo? && project.shimo_integration&.render?
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|