Open rsyring opened 2 years ago
Currently, I have to do:
class ApprovalReview(ApprovalBaseView): rule('<int:week_id>', post=True) def get(self, week_id): pass def post(self, week_id): pass
Seems like rule could be smarter and not require post=True if the post method is defined.
rule
post=True
post
Currently, I have to do:
Seems like
rule
could be smarter and not requirepost=True
if thepost
method is defined.