mirror of
https://github.com/discourse/discourse-ai.git
synced 2025-02-09 13:04:42 +00:00
f99fe7e1ed
* FEATURE: Composer AI helper This change introduces a new composer button for the group members listed in the `ai_helper_allowed_groups` site setting. Users can use chatGPT to review, improve, or translate their posts to English. * Add a safeguard for PMs and don't rely on parentView
9 lines
157 B
Ruby
9 lines
157 B
Ruby
# frozen_string_literal: true
|
|
|
|
module ::DiscourseAi
|
|
class Engine < ::Rails::Engine
|
|
engine_name PLUGIN_NAME
|
|
isolate_namespace DiscourseAi
|
|
end
|
|
end
|