Fixed some histories
All checks were successful
Deploy staging on push / on-push-deploy_sh-edraft (push) Successful in 4m1s
All checks were successful
Deploy staging on push / on-push-deploy_sh-edraft (push) Successful in 4m1s
This commit is contained in:
@@ -82,11 +82,11 @@ class User(TableABC):
|
||||
self._reaction_count = value
|
||||
|
||||
@property
|
||||
def birthday(self) -> Optional[datetime]:
|
||||
def birthday(self) -> Optional[date]:
|
||||
return self._birthday
|
||||
|
||||
@birthday.setter
|
||||
def birthday(self, value: Optional[datetime]):
|
||||
def birthday(self, value: Optional[date]):
|
||||
self._birthday = value
|
||||
|
||||
@property
|
||||
|
@@ -1,3 +1,6 @@
|
||||
from datetime import date
|
||||
from typing import Optional
|
||||
|
||||
from cpl_core.dependency_injection import ServiceProviderABC
|
||||
from cpl_query.extension import List
|
||||
|
||||
@@ -11,6 +14,7 @@ class UserHistory(HistoryTableABC):
|
||||
xp: int,
|
||||
message_count: int,
|
||||
reaction_count: int,
|
||||
birthday: Optional[date],
|
||||
server: int,
|
||||
deleted: bool,
|
||||
date_from: str,
|
||||
@@ -24,6 +28,7 @@ class UserHistory(HistoryTableABC):
|
||||
self._xp = xp
|
||||
self._message_count = message_count
|
||||
self._reaction_count = reaction_count
|
||||
self._birthday = birthday
|
||||
self._server = server
|
||||
|
||||
self._deleted = deleted
|
||||
@@ -50,6 +55,10 @@ class UserHistory(HistoryTableABC):
|
||||
def reaction_count(self) -> int:
|
||||
return self._reaction_count
|
||||
|
||||
@property
|
||||
def birthday(self) -> Optional[date]:
|
||||
return self._birthday
|
||||
|
||||
@property
|
||||
def server(self) -> int:
|
||||
return self._server
|
||||
|
Reference in New Issue
Block a user