django-chelseru 1.1.2__py3-none-any.whl → 1.1.3__py3-none-any.whl

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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: django-chelseru
3
- Version: 1.1.2
3
+ Version: 1.1.3
4
4
  Summary: Authentication system, online and real-time chat, SMS system for Iranian SMS services.
5
5
  Home-page: https://pipdjango.chelseru.com
6
6
  Author: Sobhan Bahman Rashnu
@@ -1,10 +1,10 @@
1
- django_chelseru-1.1.2.dist-info/licenses/LICENSE,sha256=VupU5KV4NteHaNQb-WH31G_WZWezxXoomjiCIAHoQJo,1089
1
+ django_chelseru-1.1.3.dist-info/licenses/LICENSE,sha256=VupU5KV4NteHaNQb-WH31G_WZWezxXoomjiCIAHoQJo,1089
2
2
  drfchelseru/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3
3
  drfchelseru/admin.py,sha256=8glh59ggY-7ud76dIDfAXQwkBPq9Q80MF_qUC9ZOi0w,986
4
4
  drfchelseru/apps.py,sha256=hOTTzFGLXiTPZeN8p_LLcSECLtsR2Q0SUo8zJzgM-qQ,211
5
5
  drfchelseru/consumers.py,sha256=c8h9JYu5QUSKRREFrIrkjpkEQTzG5V8eg2lriaZODsc,2614
6
6
  drfchelseru/middlewares.py,sha256=2GT9wTkqfQIUQyVkecul2V4hssvhkKjYpHErvVmvY14,3808
7
- drfchelseru/models.py,sha256=U_QqE2JdOGPP37rfB3-M4NcWysVc88xWDjWS9qo6fWI,9707
7
+ drfchelseru/models.py,sha256=2CaOyTfNDVjdt2aGc0qGTie8xxLRzp8hDf75-_P_KRs,9705
8
8
  drfchelseru/routing.py,sha256=shAlgzcIwVuVPlvKeWBLCqr6PuBTHyIrWNgHEfnqrxg,165
9
9
  drfchelseru/serializers.py,sha256=I3kS2NhzIprY8-WWhjQPShAom6R7epg7do7RnDkpnys,1421
10
10
  drfchelseru/services.py,sha256=p7qgxy2iOajx0muU8GUvnejOlJ8bN5Jb3GntlPttqIc,17496
@@ -30,8 +30,9 @@ drfchelseru/migrations/0013_payment_authority_payment_data_payment_status_code.p
30
30
  drfchelseru/migrations/0014_payment_gateway_title_payment_gateway_url.py,sha256=7b4dn3_J4SNqTA5GqEHUmEGryJd26PSTaEoU0k_3BPk,616
31
31
  drfchelseru/migrations/0015_payment_message.py,sha256=7aysohtF5ajAGFB88IRIy4nRagSi6GOIkQb9sTZp91o,436
32
32
  drfchelseru/migrations/0016_payment_card_hash_payment_card_pan_and_more.py,sha256=bRGD0ZMJWW3R_c3mFAHsTMC8am2Xymh-48XRPVKmgvc,887
33
+ drfchelseru/migrations/0017_alter_payment_callback_url_alter_payment_gateway_url.py,sha256=CzlVrPM3L7Iv1lgjM6-MSBdw38y5uaBH9Oc6PCSImCQ,574
33
34
  drfchelseru/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
34
- django_chelseru-1.1.2.dist-info/METADATA,sha256=terB9mh9DB4HM6JEDK6ffwXQkG5zqXmonSZTM5AOjyc,10944
35
- django_chelseru-1.1.2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
36
- django_chelseru-1.1.2.dist-info/top_level.txt,sha256=fsaO1F03W3j4AYi0TfDGv5Cjb_Qrh6RSkwkWqfqaMns,12
37
- django_chelseru-1.1.2.dist-info/RECORD,,
35
+ django_chelseru-1.1.3.dist-info/METADATA,sha256=AO1B_EH1BtFr4MOj150NpocPm3tM5Z-HVDBn6o3yozc,10944
36
+ django_chelseru-1.1.3.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
37
+ django_chelseru-1.1.3.dist-info/top_level.txt,sha256=fsaO1F03W3j4AYi0TfDGv5Cjb_Qrh6RSkwkWqfqaMns,12
38
+ django_chelseru-1.1.3.dist-info/RECORD,,
@@ -0,0 +1,23 @@
1
+ # Generated by Django 5.1.6 on 2025-08-28 07:17
2
+
3
+ from django.db import migrations, models
4
+
5
+
6
+ class Migration(migrations.Migration):
7
+
8
+ dependencies = [
9
+ ("drfchelseru", "0016_payment_card_hash_payment_card_pan_and_more"),
10
+ ]
11
+
12
+ operations = [
13
+ migrations.AlterField(
14
+ model_name="payment",
15
+ name="callback_url",
16
+ field=models.URLField(),
17
+ ),
18
+ migrations.AlterField(
19
+ model_name="payment",
20
+ name="gateway_url",
21
+ field=models.URLField(blank=True, null=True),
22
+ ),
23
+ ]
drfchelseru/models.py CHANGED
@@ -172,13 +172,13 @@ class Payment(models.Model):
172
172
  order_id = models.CharField(max_length=20)
173
173
  amount = models.FloatField()
174
174
  description = models.TextField()
175
- callback_url = models.SlugField()
175
+ callback_url = models.URLField()
176
176
  mobile = models.CharField(max_length=11, blank=True, null=True)
177
177
  email = models.EmailField(blank=True, null=True)
178
178
  currency = models.CharField(max_length=20, blank=True, null=True)
179
179
 
180
180
  gateway_title = models.CharField(max_length=25, blank=True, null=True)
181
- gateway_url = models.SlugField(blank=True, null=True)
181
+ gateway_url = models.URLField(blank=True, null=True)
182
182
  authority = models.TextField(blank=True, null=True)
183
183
  status_code = models.IntegerField(blank=True, null=True)
184
184
  message = models.CharField(max_length=25, blank=True, null=True)