Method
__call__
(
self,
grant_type,
client,
user=None,
scope=None,
expires_in=None,
include_refresh_token=True,
)
Source from the content-addressed store, hash-verified
| 96 | return token |
| 97 | |
| 98 | def __call__( |
| 99 | self, |
| 100 | grant_type, |
| 101 | client, |
| 102 | user=None, |
| 103 | scope=None, |
| 104 | expires_in=None, |
| 105 | include_refresh_token=True, |
| 106 | ): |
| 107 | # there is absolutely no refresh token in JWT format |
| 108 | return self.generate(grant_type, client, user, scope, expires_in) |
Callers
nothing calls this directly
Tested by
no test coverage detected