basic subscribe page

This commit is contained in:
Rimian Perkins
2019-10-10 13:52:55 +11:00
parent 91045583ad
commit bb31deae89
23 changed files with 182 additions and 40 deletions
@@ -2,4 +2,8 @@ export default function(helpers) {
const { response } = helpers;
this.get("/patrons", () => response({ email: "[email protected]" }));
this.get("/groups/:plan", id => {
return response({ full_name: "Saboo", bio_cooked: "This is the plan" });
});
}