Skip to content

Commit f12bdec

Browse files
author
Nicola Lanzilotto
committed
Enables the ability to do the sign in with Google
1 parent 001aa35 commit f12bdec

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

src/app/auth/signin/signin.component.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,8 @@ export class SigninComponent implements OnInit {
8585
this.company_site_url = brand['COMPANY_SITE_URL'];
8686
this.secondaryBrandColor = brand['BRAND_SECONDARY_COLOR'];
8787
this.primaryBrandColor = brand['BRAND_PRIMARY_COLOR'];
88-
this.hideGoogleAuthBtn = null;// = brand['display_google_auth_btn'];
88+
// this.hideGoogleAuthBtn = null;// = brand['display_google_auth_btn'];
89+
this.hideGoogleAuthBtn = brand['display_google_auth_btn'];
8990
}
9091

9192
ngOnInit() {

src/app/auth/signup/signup.component.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,8 @@ export class SignupComponent extends WidgetSetUpBaseComponent implements OnInit,
157157
this.displaySocialProofContainer = brand['signup_page'].display_social_proof_container;
158158
this.display_dpa = brand['display_dpa_link'];
159159
this.dpa_url = brand['dpa_url'];
160-
this.hideGoogleAuthBtn = null;//brand['display_google_auth_btn'];
160+
// this.hideGoogleAuthBtn = null;//brand['display_google_auth_btn'];
161+
this.hideGoogleAuthBtn = brand['display_google_auth_btn'];
161162
}
162163

163164
ngOnInit() {

0 commit comments

Comments
 (0)