discourse-subscriptions/assets/javascripts/discourse/helpers/stripe-payment-link.js.es6

6 lines
160 B
Plaintext
Raw Normal View History

2019-09-14 00:20:16 -04:00
export default Ember.Helper.helper(function(params) {
const payment = params[0];
return `<a href=\"${payment.url}\">${payment.payment_intent_id}</a>`;
});