aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/kotlin/com/pitchedapps/frost/utils
diff options
context:
space:
mode:
authorAllan Wang <me@allanwang.ca>2019-09-07 21:56:46 -0700
committerAllan Wang <me@allanwang.ca>2019-09-07 21:56:46 -0700
commit4c7521d2f773424d76bfe8b4f5beb6cb8b1af815 (patch)
tree51202714ef65704ea44a5e186d6e93be0fe173b1 /app/src/main/kotlin/com/pitchedapps/frost/utils
parent7fb7dcb5a190d65e66bf9c2dd72b94dfcb60cd1a (diff)
downloadfrost-4c7521d2f773424d76bfe8b4f5beb6cb8b1af815.tar.gz
frost-4c7521d2f773424d76bfe8b4f5beb6cb8b1af815.tar.bz2
frost-4c7521d2f773424d76bfe8b4f5beb6cb8b1af815.zip
Replace web only with native ui and auth requests
Diffstat (limited to 'app/src/main/kotlin/com/pitchedapps/frost/utils')
-rw-r--r--app/src/main/kotlin/com/pitchedapps/frost/utils/Prefs.kt4
1 files changed, 3 insertions, 1 deletions
diff --git a/app/src/main/kotlin/com/pitchedapps/frost/utils/Prefs.kt b/app/src/main/kotlin/com/pitchedapps/frost/utils/Prefs.kt
index f17645d0..522e1733 100644
--- a/app/src/main/kotlin/com/pitchedapps/frost/utils/Prefs.kt
+++ b/app/src/main/kotlin/com/pitchedapps/frost/utils/Prefs.kt
@@ -191,7 +191,9 @@ object Prefs : KPref() {
var showCreateFab: Boolean by kpref("show_create_fab", true)
- var webOnly: Boolean by kpref("web_only", false)
+ var authRequests: Boolean by kpref("web_requests", false)
+
+ var nativeUi: Boolean by kpref("native_ui", true)
inline val mainActivityLayout: MainActivityLayout
get() = MainActivityLayout(mainActivityLayoutType)