discourse/plugins/discourse-ai/app/controllers/discourse_ai/admin/dashboard_controller.rb
Jarek Radosz e372355fd0
DEV: Clean up scope resolution operators in plugins (#34979)
Co-authored-by: Loïc Guitaut <loic@discourse.org>
2025-09-30 14:36:34 +02:00

12 lines
205 B
Ruby
Vendored

# frozen_string_literal: true
module DiscourseAi
module Admin
class DashboardController < ::Admin::StaffController
requires_plugin PLUGIN_NAME
def sentiment
end
end
end
end