fix broken subscribe page test

This commit is contained in:
Rimian Perkins 2019-10-10 14:18:44 +11:00
parent bb31deae89
commit f61f756d9c
1 changed files with 5 additions and 1 deletions

View File

@ -3,7 +3,11 @@ export default function(helpers) {
this.get("/patrons", () => response({ email: "hello@example.com" }));
this.get("/groups/:plan", id => {
this.get("/groups/:plan", () => {
return response({ full_name: "Saboo", bio_cooked: "This is the plan" });
});
this.get("/patrons/plans", () => {
return response({ plans: [] });
});
}