diff --git a/sanic/blueprints.py b/sanic/blueprints.py index 64a37da0..09b9540d 100644 --- a/sanic/blueprints.py +++ b/sanic/blueprints.py @@ -82,7 +82,7 @@ class Blueprint: return handler return decorator - def add_route(self, handler, uri, methods=None, host=None): + def add_route(self, handler, uri, methods=frozenset({'GET'}), host=None): """ Creates a blueprint route from a function. :param handler: Function to handle uri request.