Skip to content

Commit fcd997f

Browse files
committed
chore: add deprecated tag to google_auth action in code
1 parent 8f7d870 commit fcd997f

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

packages/data-models/flowTypes.ts

+4
Original file line numberDiff line numberDiff line change
@@ -385,6 +385,10 @@ export namespace FlowTypes {
385385
"feedback",
386386
"go_to",
387387
"go_to_url",
388+
/**
389+
* @deprecated since v0.16.27
390+
* Use `auth: sign_in_google` instead
391+
* */
388392
"google_auth",
389393
"open_external",
390394
"pop_up",

src/app/shared/services/auth/auth.service.ts

+4-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,10 @@ export class AuthService extends SyncServiceBase {
6464
}
6565
return childActions[actionId]();
6666
},
67-
// Legacy action, prefer `auth | sign_in_google`
67+
/**
68+
* @deprecated since v0.16.27
69+
* Use `auth: sign_in_google` instead
70+
* */
6871
google_auth: async () => {
6972
return await this.signInWithGoogle();
7073
},

0 commit comments

Comments
 (0)