Skip to content

Commit

Permalink
Merge pull request #56 from djpugh/fix/links
Browse files Browse the repository at this point in the history
Fixing links in sphinx config
  • Loading branch information
djpugh authored May 22, 2021
2 parents bfa3116 + c04c7ca commit 59098b3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@
]

extlinks = {
"issue": ("https://github.com/djpugh/azure_devops_artifacts_helpers/issues/%s", "#"),
"pull": ("https://github.com/djpugh/azure_devops_artifacts_helpers/pull/%s", "PR #"),
"issue": ("https://github.com/djpugh/fastapi_aad_auth/issues/%s", "#"),
"pull": ("https://github.com/djpugh/fastapi_aad_auth/pull/%s", "PR #"),
"user": ("https://github.com/%s", "@"),
"pypi": ("https://pypi.org/project/%s", ""),
}
Expand Down Expand Up @@ -181,7 +181,7 @@
}
],
"heroes": {
"index": "Adding Azure Active Directory Authentical for fastAPI",
"index": "Adding Azure Active Directory Authentication for fastAPI",
},
"version_dropdown": False,
}
Expand Down
1 change: 1 addition & 0 deletions src/fastapi_aad_auth/ui/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@

class UI(LoggingMixin):
"""Provides Login endpoint methods, which are then wrapped in a factory method."""

def __init__(self, config: 'config.Config', authenticator: 'auth.Authenticator', base_context: Dict[str, Any] = None):
"""Initialise the UI based on the provided configuration.
Expand Down

0 comments on commit 59098b3

Please sign in to comment.