(self)
| 81 | class MainHandler(webapp2.RequestHandler): |
| 82 | @decorator.oauth_aware |
| 83 | def get(self): |
| 84 | variables = { |
| 85 | "url": decorator.authorize_url(), |
| 86 | "has_credentials": decorator.has_credentials(), |
| 87 | } |
| 88 | template = JINJA_ENVIRONMENT.get_template("grant.html") |
| 89 | self.response.write(template.render(variables)) |
| 90 | |
| 91 | |
| 92 | class AboutHandler(webapp2.RequestHandler): |
no outgoing calls
no test coverage detected