File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
srcds/addons/source-python/plugins/admin/plugins/included/admin_kick_ban Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 1515# =============================================================================
1616# >> MODEL CLASSES
1717# =============================================================================
18- class BannedUser (Base ):
18+ class _BannedUser (Base ):
1919 __abstract__ = True
2020
2121 id = Column (Integer , primary_key = True )
@@ -58,7 +58,7 @@ def lift_ban(self, unbanned_by):
5858 self .unbanned_by = unbanned_by
5959
6060
61- class BannedSteamID (BannedUser ):
61+ class BannedSteamID (_BannedUser ):
6262 __tablename__ = config ['database' ]['prefix' ] + "banned_steamid"
6363
6464 steamid64 = Column (String (32 ))
@@ -72,7 +72,7 @@ def set_uniqueid(self, uniqueid):
7272 uniqueid = property (get_uniqueid , set_uniqueid )
7373
7474
75- class BannedIPAddress (BannedUser ):
75+ class BannedIPAddress (_BannedUser ):
7676 __tablename__ = config ['database' ]['prefix' ] + "banned_ip_address"
7777
7878 ip_address = Column (String (48 ))
You can’t perform that action at this time.
0 commit comments