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 { ...@@ -41,13 +41,13 @@ sub REST_RESOURCES {
GET => { GET => {
method => 'get', method => 'get',
params => sub { params => sub {
return { ids => $_[0] }; return { ids => [$_[0]] };
}, },
}, },
POST => { POST => {
method => 'update', method => 'update',
params => sub { 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