mirror of
https://github.com/discourse/discourse-ai.git
synced 2025-03-06 09:20:14 +00:00
This PR adds new reports for displaying information about post sentiments grouped by date and emotions group by TL. Depends on discourse/discourse#24274
13 lines
218 B
Ruby
13 lines
218 B
Ruby
# frozen_string_literal: true
|
|
|
|
module DiscourseAi
|
|
module Admin
|
|
class DashboardController < ::Admin::StaffController
|
|
requires_plugin DiscourseAi::PLUGIN_NAME
|
|
|
|
def sentiment
|
|
end
|
|
end
|
|
end
|
|
end
|