refactor: move settings and secrets stores to app_server (#14165)

Co-authored-by: openhands <openhands@all-hands.dev>
This commit is contained in:
Tim O'Farrell
2026-04-27 13:54:33 -06:00
committed by GitHub
parent 3a40ecb931
commit 9e3aed7f53
21 changed files with 36 additions and 36 deletions

View File

@@ -22,10 +22,10 @@ class ServerConfig(ServerConfigInterface):
hide_llm_settings = os.environ.get('HIDE_LLM_SETTINGS', 'false') == 'true'
# This config is used to hide the microagent management page from the users for now. We will remove this once we release the new microagent management page.
settings_store_class: str = (
'openhands.storage.settings.file_settings_store.FileSettingsStore'
'openhands.app_server.settings.file_settings_store.FileSettingsStore'
)
secret_store_class: str = (
'openhands.storage.secrets.file_secrets_store.FileSecretsStore'
'openhands.app_server.secrets.file_secrets_store.FileSecretsStore'
)
user_auth_class: str = (
'openhands.server.user_auth.default_user_auth.DefaultUserAuth'