mirror of
https://github.com/we-promise/sure.git
synced 2026-04-07 14:31:25 +00:00
* Reshuffle/organize settings UI * Settings: AI prompt display/minor touch-ups * API key settings tests * Moved import/export together * Collapsible LLM prompt DIVs * Add export tests
13 lines
296 B
Ruby
13 lines
296 B
Ruby
class Settings::AiPromptsController < ApplicationController
|
|
layout "settings"
|
|
|
|
def show
|
|
@breadcrumbs = [
|
|
[ "Home", root_path ],
|
|
[ "AI Prompts", nil ]
|
|
]
|
|
@family = Current.family
|
|
@assistant_config = Assistant.config_for(OpenStruct.new(user: Current.user))
|
|
end
|
|
end
|