payme-pkg 3.0.23__tar.gz → 3.0.24__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of payme-pkg might be problematic. Click here for more details.
- {payme_pkg-3.0.23 → payme_pkg-3.0.24}/PKG-INFO +3 -1
- {payme_pkg-3.0.23 → payme_pkg-3.0.24}/README.md +2 -0
- {payme_pkg-3.0.23 → payme_pkg-3.0.24}/payme/admin.py +3 -1
- {payme_pkg-3.0.23 → payme_pkg-3.0.24}/payme_pkg.egg-info/PKG-INFO +3 -1
- {payme_pkg-3.0.23 → payme_pkg-3.0.24}/setup.py +1 -1
- {payme_pkg-3.0.23 → payme_pkg-3.0.24}/LICENSE.txt +0 -0
- {payme_pkg-3.0.23 → payme_pkg-3.0.24}/payme/__init__.py +0 -0
- {payme_pkg-3.0.23 → payme_pkg-3.0.24}/payme/apps.py +0 -0
- {payme_pkg-3.0.23 → payme_pkg-3.0.24}/payme/classes/__init__.py +0 -0
- {payme_pkg-3.0.23 → payme_pkg-3.0.24}/payme/classes/cards.py +0 -0
- {payme_pkg-3.0.23 → payme_pkg-3.0.24}/payme/classes/client.py +0 -0
- {payme_pkg-3.0.23 → payme_pkg-3.0.24}/payme/classes/http.py +0 -0
- {payme_pkg-3.0.23 → payme_pkg-3.0.24}/payme/classes/initializer.py +0 -0
- {payme_pkg-3.0.23 → payme_pkg-3.0.24}/payme/classes/receipts.py +0 -0
- {payme_pkg-3.0.23 → payme_pkg-3.0.24}/payme/const.py +0 -0
- {payme_pkg-3.0.23 → payme_pkg-3.0.24}/payme/exceptions/__init__.py +0 -0
- {payme_pkg-3.0.23 → payme_pkg-3.0.24}/payme/exceptions/general.py +0 -0
- {payme_pkg-3.0.23 → payme_pkg-3.0.24}/payme/exceptions/webhook.py +0 -0
- {payme_pkg-3.0.23 → payme_pkg-3.0.24}/payme/migrations/0001_initial.py +0 -0
- {payme_pkg-3.0.23 → payme_pkg-3.0.24}/payme/migrations/0002_paymetransactions_fiscal_data.py +0 -0
- {payme_pkg-3.0.23 → payme_pkg-3.0.24}/payme/migrations/0003_alter_paymetransactions_fiscal_data.py +0 -0
- {payme_pkg-3.0.23 → payme_pkg-3.0.24}/payme/migrations/__init__.py +0 -0
- {payme_pkg-3.0.23 → payme_pkg-3.0.24}/payme/models.py +0 -0
- {payme_pkg-3.0.23 → payme_pkg-3.0.24}/payme/types/__init__.py +0 -0
- {payme_pkg-3.0.23 → payme_pkg-3.0.24}/payme/types/request/__init__.py +0 -0
- {payme_pkg-3.0.23 → payme_pkg-3.0.24}/payme/types/response/__init__.py +0 -0
- {payme_pkg-3.0.23 → payme_pkg-3.0.24}/payme/types/response/cards.py +0 -0
- {payme_pkg-3.0.23 → payme_pkg-3.0.24}/payme/types/response/receipts.py +0 -0
- {payme_pkg-3.0.23 → payme_pkg-3.0.24}/payme/types/response/webhook.py +0 -0
- {payme_pkg-3.0.23 → payme_pkg-3.0.24}/payme/urls.py +0 -0
- {payme_pkg-3.0.23 → payme_pkg-3.0.24}/payme/util.py +0 -0
- {payme_pkg-3.0.23 → payme_pkg-3.0.24}/payme/views.py +0 -0
- {payme_pkg-3.0.23 → payme_pkg-3.0.24}/payme_pkg.egg-info/SOURCES.txt +0 -0
- {payme_pkg-3.0.23 → payme_pkg-3.0.24}/payme_pkg.egg-info/dependency_links.txt +0 -0
- {payme_pkg-3.0.23 → payme_pkg-3.0.24}/payme_pkg.egg-info/requires.txt +0 -0
- {payme_pkg-3.0.23 → payme_pkg-3.0.24}/payme_pkg.egg-info/top_level.txt +0 -0
- {payme_pkg-3.0.23 → payme_pkg-3.0.24}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: payme-pkg
|
|
3
|
-
Version: 3.0.
|
|
3
|
+
Version: 3.0.24
|
|
4
4
|
Home-page: https://github.com/Muhammadali-Akbarov/payme-pkg
|
|
5
5
|
Author: Muhammadali Akbarov
|
|
6
6
|
Author-email: muhammadali17abc@gmail.com
|
|
@@ -89,6 +89,8 @@ PAYME_KEY = "your-payme-key"
|
|
|
89
89
|
PAYME_ACCOUNT_FIELD = "id"
|
|
90
90
|
PAYME_ACCOUNT_MODEL = "clients.models.Client"
|
|
91
91
|
PAYME_ONE_TIME_PAYMENT = False
|
|
92
|
+
|
|
93
|
+
PAYME_DISABLE_ADMIN = False (optionally configuration if you want to disable change to True)
|
|
92
94
|
```
|
|
93
95
|
|
|
94
96
|
Create a new View that about handling call backs
|
|
@@ -75,6 +75,8 @@ PAYME_KEY = "your-payme-key"
|
|
|
75
75
|
PAYME_ACCOUNT_FIELD = "id"
|
|
76
76
|
PAYME_ACCOUNT_MODEL = "clients.models.Client"
|
|
77
77
|
PAYME_ONE_TIME_PAYMENT = False
|
|
78
|
+
|
|
79
|
+
PAYME_DISABLE_ADMIN = False (optionally configuration if you want to disable change to True)
|
|
78
80
|
```
|
|
79
81
|
|
|
80
82
|
Create a new View that about handling call backs
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
from django.conf import settings
|
|
1
2
|
from django.contrib import admin
|
|
2
3
|
|
|
3
4
|
from payme.models import PaymeTransactions
|
|
@@ -13,4 +14,5 @@ class PaymeTransactionsUI(admin.ModelAdmin):
|
|
|
13
14
|
ordering = ('-created_at',)
|
|
14
15
|
|
|
15
16
|
|
|
16
|
-
|
|
17
|
+
if not getattr(settings, 'PAYME_DISABLE_ADMIN', False):
|
|
18
|
+
admin.site.register(PaymeTransactions, PaymeTransactionsUI)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: payme-pkg
|
|
3
|
-
Version: 3.0.
|
|
3
|
+
Version: 3.0.24
|
|
4
4
|
Home-page: https://github.com/Muhammadali-Akbarov/payme-pkg
|
|
5
5
|
Author: Muhammadali Akbarov
|
|
6
6
|
Author-email: muhammadali17abc@gmail.com
|
|
@@ -89,6 +89,8 @@ PAYME_KEY = "your-payme-key"
|
|
|
89
89
|
PAYME_ACCOUNT_FIELD = "id"
|
|
90
90
|
PAYME_ACCOUNT_MODEL = "clients.models.Client"
|
|
91
91
|
PAYME_ONE_TIME_PAYMENT = False
|
|
92
|
+
|
|
93
|
+
PAYME_DISABLE_ADMIN = False (optionally configuration if you want to disable change to True)
|
|
92
94
|
```
|
|
93
95
|
|
|
94
96
|
Create a new View that about handling call backs
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{payme_pkg-3.0.23 → payme_pkg-3.0.24}/payme/migrations/0002_paymetransactions_fiscal_data.py
RENAMED
|
File without changes
|
{payme_pkg-3.0.23 → payme_pkg-3.0.24}/payme/migrations/0003_alter_paymetransactions_fiscal_data.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|