Commit 7186b647 authored by Dylan William Hardison's avatar Dylan William Hardison Committed by Dylan William Hardison

Bug 1169395: BugUserLastVisit does not allow multiple bugs to be specified

r=dkl,a=glob
parent a75ccc25
......@@ -41,13 +41,13 @@ sub REST_RESOURCES {
GET => {
method => 'get',
params => sub {
return { ids => $_[0] };
return { ids => [$_[0]] };
},
},
POST => {
method => 'update',
params => sub {
return { ids => $_[0] };
return { ids => [$_[0]] };
},
},
},
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment