reyserver 1.1.54__py3-none-any.whl → 1.1.55__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.
Potentially problematic release.
This version of reyserver might be problematic. Click here for more details.
- reyserver/rauth.py +5 -5
- reyserver/rfile.py +2 -2
- {reyserver-1.1.54.dist-info → reyserver-1.1.55.dist-info}/METADATA +1 -1
- {reyserver-1.1.54.dist-info → reyserver-1.1.55.dist-info}/RECORD +6 -6
- {reyserver-1.1.54.dist-info → reyserver-1.1.55.dist-info}/WHEEL +0 -0
- {reyserver-1.1.54.dist-info → reyserver-1.1.55.dist-info}/licenses/LICENSE +0 -0
reyserver/rauth.py
CHANGED
|
@@ -30,7 +30,7 @@ __all__ = (
|
|
|
30
30
|
)
|
|
31
31
|
|
|
32
32
|
|
|
33
|
-
class DatabaseORMTableUser(rorm.
|
|
33
|
+
class DatabaseORMTableUser(rorm.Table):
|
|
34
34
|
"""
|
|
35
35
|
Database `user` table ORM model.
|
|
36
36
|
"""
|
|
@@ -48,7 +48,7 @@ class DatabaseORMTableUser(rorm.Model, table=True):
|
|
|
48
48
|
is_valid: bool = rorm.Field(rorm.types_mysql.TINYINT(unsigned=True), field_default='1', not_null=True, comment='Is the valid.')
|
|
49
49
|
|
|
50
50
|
|
|
51
|
-
class DatabaseORMTableRole(rorm.
|
|
51
|
+
class DatabaseORMTableRole(rorm.Table):
|
|
52
52
|
"""
|
|
53
53
|
Database `role` table ORM model.
|
|
54
54
|
"""
|
|
@@ -62,7 +62,7 @@ class DatabaseORMTableRole(rorm.Model, table=True):
|
|
|
62
62
|
desc: str = rorm.Field(rorm.types.VARCHAR(500), comment='Role description.')
|
|
63
63
|
|
|
64
64
|
|
|
65
|
-
class DatabaseORMTablePerm(rorm.
|
|
65
|
+
class DatabaseORMTablePerm(rorm.Table):
|
|
66
66
|
"""
|
|
67
67
|
Database `perm` table ORM model.
|
|
68
68
|
"""
|
|
@@ -77,7 +77,7 @@ class DatabaseORMTablePerm(rorm.Model, table=True):
|
|
|
77
77
|
api: str = rorm.Field(rorm.types.VARCHAR(1000), comment='API resource path regular expression "match" pattern.')
|
|
78
78
|
|
|
79
79
|
|
|
80
|
-
class DatabaseORMTableUserRole(rorm.
|
|
80
|
+
class DatabaseORMTableUserRole(rorm.Table):
|
|
81
81
|
"""
|
|
82
82
|
Database `user_role` table ORM model.
|
|
83
83
|
"""
|
|
@@ -90,7 +90,7 @@ class DatabaseORMTableUserRole(rorm.Model, table=True):
|
|
|
90
90
|
role_id: int = rorm.Field(rorm.types_mysql.SMALLINT(unsigned=True), key=True, comment='Role ID.')
|
|
91
91
|
|
|
92
92
|
|
|
93
|
-
class DatabaseORMTableRolePerm(rorm.
|
|
93
|
+
class DatabaseORMTableRolePerm(rorm.Table):
|
|
94
94
|
"""
|
|
95
95
|
Database `role_perm` table ORM model.
|
|
96
96
|
"""
|
reyserver/rfile.py
CHANGED
|
@@ -25,7 +25,7 @@ __all__ = (
|
|
|
25
25
|
)
|
|
26
26
|
|
|
27
27
|
|
|
28
|
-
class DatabaseORMTableInfo(rorm.
|
|
28
|
+
class DatabaseORMTableInfo(rorm.Table):
|
|
29
29
|
"""
|
|
30
30
|
Database `info` table ORM model.
|
|
31
31
|
"""
|
|
@@ -39,7 +39,7 @@ class DatabaseORMTableInfo(rorm.Model, table=True):
|
|
|
39
39
|
note: str = rorm.Field(rorm.types.VARCHAR(500), comment='File note.')
|
|
40
40
|
|
|
41
41
|
|
|
42
|
-
class DatabaseORMTableData(rorm.
|
|
42
|
+
class DatabaseORMTableData(rorm.Table):
|
|
43
43
|
"""
|
|
44
44
|
Database `data` table ORM model.
|
|
45
45
|
"""
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
reyserver/__init__.py,sha256=7GX64p7uI2eetJH9NJ-DTg-8iyQwOsGcviADFJCPxVA,373
|
|
2
2
|
reyserver/rall.py,sha256=riyDRTUsigco_Bee1H4aZFb8IgvjnxdX9qcnVb9i9mE,270
|
|
3
|
-
reyserver/rauth.py,sha256=
|
|
3
|
+
reyserver/rauth.py,sha256=Wua-4Y_MoPpW65M0KFO1xzj3t0zWDQHZU0LfaFXtMrs,11668
|
|
4
4
|
reyserver/rbase.py,sha256=jgjAkT1kxzVKB60xfWxZbnQJsehhcTBr24AclTYjc4g,5603
|
|
5
5
|
reyserver/rclient.py,sha256=IWZ3smyIP0_YJrfSrM8JFCr0FCtN02AyT3hp8YuSsDQ,5103
|
|
6
|
-
reyserver/rfile.py,sha256=
|
|
6
|
+
reyserver/rfile.py,sha256=J3iQQi4modU98yfFyovyfeHqR1nh8GyTEz1Bvo6555A,8986
|
|
7
7
|
reyserver/rserver.py,sha256=EDIspT0uWhiWl7uIhRDJtcxRvZG96GaVNWYik7pprz4,8561
|
|
8
|
-
reyserver-1.1.
|
|
9
|
-
reyserver-1.1.
|
|
10
|
-
reyserver-1.1.
|
|
11
|
-
reyserver-1.1.
|
|
8
|
+
reyserver-1.1.55.dist-info/METADATA,sha256=u_iRcTcVBs-Nt-8r-CdZz7zGbRJyYu6Q1icFCfSQG-Q,1689
|
|
9
|
+
reyserver-1.1.55.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
10
|
+
reyserver-1.1.55.dist-info/licenses/LICENSE,sha256=UYLPqp7BvPiH8yEZduJqmmyEl6hlM3lKrFIefiD4rvk,1059
|
|
11
|
+
reyserver-1.1.55.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|