mirror of
https://github.com/discourse/discourse-subscriptions.git
synced 2025-07-08 15:22:46 +00:00
21 lines
626 B
Plaintext
21 lines
626 B
Plaintext
|
export default function(helpers) {
|
||
|
const { response } = helpers;
|
||
|
|
||
|
this.get("/patrons/products", () => {
|
||
|
const products = [
|
||
|
{
|
||
|
"id": "prod_23o8I7tU4g56",
|
||
|
"name": "Awesome Product",
|
||
|
"description": "Subscribe to our awesome product. For only $230.10 per month, you can get access. This is a test site. No real credit card transactions."
|
||
|
},
|
||
|
{
|
||
|
"id": "prod_B23dc9I7tU4eCy",
|
||
|
"name": "Special Product",
|
||
|
"description": "This is another subscription product. You can have more than one. From $12 per month."
|
||
|
}
|
||
|
];
|
||
|
|
||
|
return response(products);
|
||
|
});
|
||
|
}
|