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

8 lines
201 B
Plaintext
Raw Normal View History

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