Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Test Datanar 1.7.3 #43

Merged
merged 4 commits into from
Jun 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion datanar/datanar/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

BASE_DIR = Path(__file__).resolve().parent.parent

VERSION = "1.7.2"
VERSION = "1.7.3"

SECRET_KEY = config(
"DJANGO_SECRET_KEY",
Expand Down
11 changes: 6 additions & 5 deletions datanar/templates/api/api_docs.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
{% block content %}
<h1>Datanar API Docs</h1>
<div class="app-desc">Contact Info: <a href="mailto:[email protected]">[email protected]</a></div>
<div class="app-desc">Version: 1.0.0</div>
<div class="app-desc">Version: 1.1.0</div>
<div class="app-desc">BasePath: /api/v1/</div>
<h2>Access</h2>

Expand Down Expand Up @@ -223,14 +223,15 @@ <h3 class="field-label">Produces</h3>

<h3 class="field-label">Responses</h3>
<h4 class="field-label">201</h4>
Successful operation
<a href="#Redirect">Redirect</a>
Successful operation <a href="#Redirect">Redirect</a>
<h4 class="field-label">400</h4>
Bad request
<a href="#"></a>
<h4 class="field-label">401</h4>
Invalid token supplied
<a href="#"></a>
<h4 class="field-label">409</h4>
Redirect with this short_link already exist
<h4 class="field-label">423</h4>
Redirect with this long_link was blocked
</div> <!-- method -->
<hr/>
<div class="method"><a id="deleteRedirectId"></a>
Expand Down
2 changes: 1 addition & 1 deletion datanar/templates/qr_codes/QR_modal_preview.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<button type="button" class="btn-close ms-2" data-bs-dismiss="modal"></button>
</div>
<div class="modal-body d-flex">
<img id="qrBigPreview" class="rounded-3 border m-auto" src="">
<img id="qrBigPreview" class="rounded-3 border m-auto mw-100" src="">
</div>
<div class="modal-footer d-flex">
<div class="mx-auto">
Expand Down
Loading