mirror of
https://github.com/discourse/discourse.git
synced 2025-02-25 18:55:32 -06:00
FIX: This was causing a flaky test in Ember CLI
The path should be `/topics/bulk` not `topics/bulk` (leading slash.)
This commit is contained in:
@@ -11,7 +11,7 @@ acceptance("User Activity / Read - bulk actions", function (needs) {
|
||||
return helper.response(userFixtures["/topics/created-by/eviltrout.json"]);
|
||||
});
|
||||
|
||||
server.put("topics/bulk", () => {
|
||||
server.put("/topics/bulk", () => {
|
||||
return helper.response({ topic_ids: [7764, 9318] });
|
||||
});
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user