override def sendForAuth[A]()

in app/controllers/Login.scala [18:26]


  override def sendForAuth[A](request: RequestHeader)(implicit ec: ExecutionContext) = {
    if (request.accepts("text/html")) {
      Redirect(loginTarget).withSession {
        request.session + (GoogleAuthFilters.LOGIN_ORIGIN_KEY -> request.uri)
      }
    } else {
      Unauthorized
    }
  }