Divided admins and owner

This commit is contained in:
Profitroll
2023-02-17 21:53:43 +01:00
parent 642e17ee55
commit 68c887999e
2 changed files with 10 additions and 3 deletions

View File

@@ -17,6 +17,8 @@ class PosterClient(Client):
def __init__(self, name: str, **kwargs): # type: ignore
super().__init__(name, **kwargs)
self.owner = configGet("owner")
self.admins = configGet("admins")+[configGet("owner")]
async def submit_photo(self, id: str) -> Union[Message, None]:
@@ -40,7 +42,7 @@ class PosterClient(Client):
response = await upload_pic(str(filepath))
if response[0] is False:
if len(response[1]) > 0:
raise SubmissionDuplicatesError(str(filepath), response[1])
col_submitted.find_one_and_update({"_id": ObjectId(id)}, {"$set": {"done": True}})