in public/js/account.js [18:30]
constructor(subscriptionsRoot, spotifyLinkRoot, model) {
this.model = model;
this.view = new AccountView(
subscriptionsRoot,
spotifyLinkRoot,
model,
this.handleTierCtaClicked.bind(this),
this.handleFullUnsubscribeClick.bind(this),
this.handleSpotifyConnectionClicked.bind(this)
);
this.handleTierCtaClicked.bind(this);
this.loadSubscriptionStatus().then(() => this.view.render());
}