From a964cbebf420b2875be87745e68d3513b44f8894 Mon Sep 17 00:00:00 2001 From: easyhz Date: Sun, 11 Aug 2024 22:51:04 +0900 Subject: [PATCH] feat: auth provider auth key #52 --- .../java/com/easyhz/noffice/core/datastore/util/DataStoreKey.kt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/core/datastore/src/main/java/com/easyhz/noffice/core/datastore/util/DataStoreKey.kt b/core/datastore/src/main/java/com/easyhz/noffice/core/datastore/util/DataStoreKey.kt index a0e78085..8deb2a28 100644 --- a/core/datastore/src/main/java/com/easyhz/noffice/core/datastore/util/DataStoreKey.kt +++ b/core/datastore/src/main/java/com/easyhz/noffice/core/datastore/util/DataStoreKey.kt @@ -7,5 +7,7 @@ internal enum class AuthKey( key = "ACCESS_TOKEN" ), REFRESH_TOKEN( key = "REFRESH_TOKEN" + ), AUTH_PROVIDER( + key = "PROVIDER" ) } \ No newline at end of file