FIX: Groups list does not refresh when query changes. (#6481)

This commit is contained in:
Bianca Nenciu
2018-10-11 16:20:17 +03:00
committed by Régis Hanol
parent 1b0fbc4d30
commit ded5ff90aa
4 changed files with 37 additions and 2 deletions

View File

@ -350,6 +350,10 @@ export default function() {
return response(200, fixturesByUrl["/groups.json"]);
});
this.get("/groups.json", () => {
return response(200, fixturesByUrl["/groups.json?username=eviltrout"]);
});
this.get("groups/search.json", () => {
return response(200, []);
});