Skip to content
Snippets Groups Projects
Commit 3e1ec219 authored by Kamal Bramwell's avatar Kamal Bramwell
Browse files

Implement no sign in required for Crust

parent 7b8dcaea
Branches
No related tags found
No related merge requests found
......@@ -34,7 +34,14 @@ class Crust private constructor(
null
}
private fun signInRequired(): Boolean = false
private fun signInRequired(): Boolean {
return if (preferences.name.isBlank()) {
true
} else {
onAuthResultSuccess()
false
}
}
private fun authBackgroundsApp() = false
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment