diff --git a/responder/models.py b/responder/models.py index 212de3a..4f964c9 100644 --- a/responder/models.py +++ b/responder/models.py @@ -48,6 +48,10 @@ class Request: return self + @property + def is_secure(self): + return self._wz.is_secure + @property def accepts_yaml(self): return "yaml" in self.headers["accept"]