mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-06-19 05:35:40 +08:00
7 lines
198 B
Ruby
Vendored
7 lines
198 B
Ruby
Vendored
# frozen_string_literal: true
|
|
|
|
module DiscourseAi::AiBot::SiteSettingsExtension
|
|
def self.enable_or_disable_ai_bots
|
|
LlmModel.find_each { |llm_model| llm_model.toggle_companion_user }
|
|
end
|
|
end
|