From e00a51b6c234fdbd7156261a903ed66a815a4fa7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Denis=20=C5=A0vara?= Date: Tue, 24 Feb 2026 11:26:00 +0100 Subject: [PATCH] Add android path config. --- .../client_configurations/android_v1.json | 90 +++++++++++++++++++ 1 file changed, 90 insertions(+) create mode 100644 app/views/client_configurations/android_v1.json diff --git a/app/views/client_configurations/android_v1.json b/app/views/client_configurations/android_v1.json new file mode 100644 index 000000000..706d54b6f --- /dev/null +++ b/app/views/client_configurations/android_v1.json @@ -0,0 +1,90 @@ +{ + "settings": {}, + "rules": [ + { + "patterns": [ + ".*" + ], + "properties": { + "context": "default", + "presentation": "default", + "query_string_presentation": "replace", + "uri": "hotwire://fragment/web", + "fallback_uri": "hotwire://fragment/web", + "pull_to_refresh_enabled": true + } + }, + { + "patterns": [ + "/new$", + "/new\\?.+$", + "/edit$", + "/edit\\?.+$", + "/cards/[0-9]+/draft", + "/notifications/settings", + "/account/settings", + "/account/join_code" + ], + "properties": { + "context": "modal", + "pull_to_refresh_enabled": false + } + }, + { + "patterns": [ + "/native/login/blank" + ], + "properties": { + "uri": "hotwire://fragment/login/blank" + } + }, + { + "patterns": [ + "/native/login/email" + ], + "properties": { + "uri": "hotwire://fragment/login/email" + } + }, + { + "patterns": [ + "/native/login/magic_code" + ], + "properties": { + "uri": "hotwire://fragment/login/magic_code" + } + }, + { + "patterns": [ + "/native/login/signup_completion" + ], + "properties": { + "uri": "hotwire://fragment/login/signup_completion" + } + }, + { + "patterns": [ + "/native/settings" + ], + "properties": { + "uri": "hotwire://fragment/settings" + } + }, + { + "patterns": [ + "/my/pins" + ], + "properties": { + "uri": "hotwire://fragment/pins" + } + }, + { + "patterns": [ + "/notifications$" + ], + "properties": { + "uri": "hotwire://fragment/notifications" + } + } + ] +} \ No newline at end of file