FEATURE: Add groups page.

This commit is contained in:
Guo Xiang Tan
2016-12-14 17:26:16 +08:00
parent 0c9499874d
commit 4b940dc8bd
15 changed files with 177 additions and 5 deletions

View File

@ -242,6 +242,10 @@ export default function() {
slug: request.params.slug } });
});
this.get("groups", () => {
return response(200, fixturesByUrl['/groups.json']);
});
this.get("/groups/discourse/topics.json", () => {
return response(200, fixturesByUrl['/groups/discourse/posts.json']);
});