Commit ff377b44 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 af6526cd
......@@ -22,13 +22,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