When calling something like /delete/project?version=1&version=2, version parameter is 1 and 2 is omitted.
@route("/<pk>", Http.DELETE)
def delete(self, request, pk, version=None, **kwargs):
#version is 1 and should be a [1, 2]
pass
Does this make any sense?
I have fixed this in llonchj/corepost@bee483e but need some help with the freshen tests. Please, can you write one for me?
P.S. I will pull request the branch when tests are written