From d4c7057c3967e5da49d182fa0f1c0c523d426eec Mon Sep 17 00:00:00 2001 From: Michael Roberts <1934806+himichaelroberts@users.noreply.github.com> Date: Mon, 10 Apr 2023 09:42:57 -0500 Subject: [PATCH] Add Auth Fallback Method Properties (#30) * feat: add auth fallback method properties * fix: add comments * chore: bump version --- app.go | 2 ++ version.txt | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/app.go b/app.go index 6cbf0c8..d4791ae 100644 --- a/app.go +++ b/app.go @@ -86,6 +86,8 @@ type AppInfo struct { UserMetadataSchemaResponse []UserMetadataField `json:"user_metadata_schema"` // The schema for user_metadata that will be stored about users Layouts Layouts `json:"layouts"` // The layouts of user_metadata on the register/profile element DefaultLanguage string `json:"default_language"` // The default_language to be used by the app + AuthFallbackMethod string `json:"auth_fallback_method"` // The fallback method to be used by the app + AuthFallbackMethodTTL int `json:"auth_fallback_method_ttl"` // The fallback method ttl to be used by the app } type UserMetadataField struct { Handle string `json:"id"` // Unique id for the user metadata field diff --git a/version.txt b/version.txt index bb8edae..ec7b967 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -v1.3.2 \ No newline at end of file +v1.4.0 \ No newline at end of file