1
0
Fork 0
mirror of https://github.com/TryGhost/Ghost-Admin.git synced 2023-12-14 02:33:04 +01:00

Removed stray debugger statement

This commit is contained in:
Nazar Gargol 2020-06-11 21:09:56 +12:00
parent 4c138268ff
commit d52a1cf2bb

View file

@ -7,7 +7,6 @@ export default class MembersUtilsService extends Service {
isStripeEnabled() {
let membersSubscriptionSettings = this.settings.parseSubscriptionSettings(this.get('settings.membersSubscriptionSettings'));
let stripeEnabled = membersSubscriptionSettings && !!(membersSubscriptionSettings.paymentProcessors[0].config.secret_token) && !!(membersSubscriptionSettings.paymentProcessors[0].config.public_token);
debugger
return stripeEnabled;
}
}