(self, scope)
| 38 | return self.default_redirect_uri |
| 39 | |
| 40 | def get_allowed_scope(self, scope): |
| 41 | if not scope: |
| 42 | return "" |
| 43 | allowed = set(scope_to_list(self.scope)) |
| 44 | return list_to_scope([s for s in scope.split() if s in allowed]) |
| 45 | |
| 46 | def check_redirect_uri(self, redirect_uri): |
| 47 | if redirect_uri == self.default_redirect_uri: |
nothing calls this directly
no test coverage detected