Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for oauth_scopes (0.06 sec)

  1. fastapi/dependencies/utils.py

    ) -> Dependant:
        if visited is None:
            visited = []
        visited.append(dependant.cache_key)
        use_parent_oauth_scopes = (parent_oauth_scopes or []) + (
            dependant.oauth_scopes or []
        )
    
        flat_dependant = Dependant(
            path_params=dependant.path_params.copy(),
            query_params=dependant.query_params.copy(),
            header_params=dependant.header_params.copy(),
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 27 12:54:56 UTC 2025
    - 37.6K bytes
    - Viewed (3)
  2. fastapi/openapi/utils.py

            # Merge scopes for the same security scheme
            if security_name not in operation_security_dict:
                operation_security_dict[security_name] = []
            for scope in security_dependency.oauth_scopes or []:
                if scope not in operation_security_dict[security_name]:
                    operation_security_dict[security_name].append(scope)
        operation_security = [
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 27 12:54:56 UTC 2025
    - 23.2K bytes
    - Viewed (0)
Back to top