diff --git a/app/controllers/users_controller.rb b/app/controllers/users_controller.rb index f2e3ff00c..87beba71c 100644 --- a/app/controllers/users_controller.rb +++ b/app/controllers/users_controller.rb @@ -21,9 +21,11 @@ class UsersController < ApplicationController @user.update!(user_params.except(:redirect_to, :delete_profile_image)) @user.profile_image.purge if should_purge_profile_image? - # Add a special notice if AI was just enabled + # Add a special notice if AI was just enabled or disabled notice = if !was_ai_enabled && @user.ai_enabled "AI Assistant has been enabled successfully." + elsif was_ai_enabled && !@user.ai_enabled + "AI Assistant has been disabled." else t(".success") end @@ -72,6 +74,8 @@ class UsersController < ApplicationController redirect_to goals_onboarding_path when "trial" redirect_to trial_onboarding_path + when "ai_prompts" + redirect_to settings_ai_prompts_path, notice: notice else redirect_to settings_profile_path, notice: notice end diff --git a/app/views/settings/ai_prompts/show.html.erb b/app/views/settings/ai_prompts/show.html.erb index 518ade36e..9a494d4c4 100644 --- a/app/views/settings/ai_prompts/show.html.erb +++ b/app/views/settings/ai_prompts/show.html.erb @@ -1,5 +1,18 @@ <%= content_for :page_title, t(".page_title") %> +<% if Current.user.ai_enabled? %> +