id,summary,reporter,owner,description,type,status,component,version,severity,resolution,keywords,cc,stage,has_patch,needs_docs,needs_tests,needs_better_patch,easy,ui_ux 32399,Allow method_decorator() to accept a list/tuple of method names.,Alexey Kotenko,nobody,"Allowing `method_decorator` to handle multiple function names would avoid invoking it multiple times: {{{#!python @method_decorator(login_required, name='get') @method_decorator(login_required, name='post') class SimpleView(View): ... }}} Instead of this lets modify function to polymorpic style: {{{#!python @method_decorator(login_required, name=['get', 'post']) class SimpleView(View): ... }}} ",New feature,closed,Utilities,dev,Normal,wontfix,,,Unreviewed,0,0,0,0,0,0