Skip to content

Commit

Permalink
✏️ fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
koladev32 committed May 23, 2024
1 parent dd5d107 commit a3670e9
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Django REST Framework Simple API Key is a fast and secure API Key authentication
</a>
</div>

For the full documentation, visit [https://drf-apikey.readthedocs.io/en/latest/](https://djangorestframework-simple-apikey.readthedocs.io/en/latest/).
For the full documentation, visit [https://djangorestframework-simple-apikey.readthedocs.io/en/latest/](https://djangorestframework-simple-apikey.readthedocs.io/en/latest/).

## Package Renaming Notice

Expand All @@ -21,7 +21,7 @@ For the full documentation, visit [https://drf-apikey.readthedocs.io/en/latest/]
```bash
pip uninstall djangorestframework-simple-apikey
pip install drf-apikey
For the full documentation, visit [https://drf-apikey.readthedocs.io/en/latest/](https://drf-apikey.readthedocs.io/en/latest/).
For the full documentation, visit [https://djangorestframework-simple-apikey.readthedocs.io/en/latest/](https://djangorestframework-simple-apikey.readthedocs.io/en/latest/).

## Introduction

Expand Down Expand Up @@ -104,7 +104,7 @@ python manage.py generate_fernet_key
## Rotation
We implement an API key rotation strategy for this package. To learn more about it, refer to the documentation at https://drf-apikey.readthedocs.io/en/latest/rotation.html.
We implement an API key rotation strategy for this package. To learn more about it, refer to the documentation at https://djangorestframework-simple-apikey.readthedocs.io/en/latest/rotation.html.
## Demo
Expand Down
2 changes: 1 addition & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Django REST Simple Api Key
:target: https://github.com/koladev32/drf-apikey/actions/workflows/ci-cd.yml/

.. image:: https://readthedocs.org/projects/drf-apikey/badge/?version=latest
:target: https://drf-apikey.readthedocs.io/en/latest/?badge=latest
:target: https://djangorestframework-simple-apikey.readthedocs.io/en/latest/?badge=latest
:alt: Documentation Status

An API Key authentication plugin for the `Django REST Framework
Expand Down
2 changes: 1 addition & 1 deletion drf_apikey/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
warnings.warn(
"This package, 'djangorestframework-simple-apikey', has been renamed to 'drf-apikey' and will no longer be updated."
"Please switch to the new package to continue receiving updates and support. "
"For more information and migration instructions, please visit: https://drf-apikey.readthedocs.io/en/latest/migrating.html",
"For more information and migration instructions, please visit: https://djangorestframework-simple-apikey.readthedocs.io/en/latest/migrating.html",
DeprecationWarning,
stacklevel=2,
)
Expand Down
2 changes: 1 addition & 1 deletion drf_apikey/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def user_settings(self):
return self._user_settings

def __check_user_settings(self, user_settings):
SETTINGS_DOC = "https://drf-apikey.readthedocs.io/en/latest/settings.html"
SETTINGS_DOC = "https://djangorestframework-simple-apikey.readthedocs.io/en/latest/settings.html"

for setting in REMOVED_SETTINGS:
if setting in user_settings:
Expand Down

0 comments on commit a3670e9

Please sign in to comment.