#238 #242

Merged
edraft merged 5 commits from #238 into 1.0.0 2023-03-06 08:42:22 +01:00
Owner
No description provided.
edraft self-assigned this 2023-03-05 14:17:54 +01:00
edraft added 2 commits 2023-03-05 14:17:54 +01:00
edraft added this to the Sprint 1.0.0 project 2023-03-05 14:17:57 +01:00
edraft requested review from Ebola-Chan 2023-03-05 14:17:59 +01:00
edraft changed title from WIP: #238 to #238 2023-03-05 21:48:06 +01:00
edraft added this to the Sprint 1.0.0 milestone 2023-03-05 21:56:05 +01:00
edraft removed this from the Sprint 1.0.0 milestone 2023-03-05 21:56:09 +01:00
Ebola-Chan requested changes 2023-03-06 01:16:17 +01:00
@ -149,1 +149,4 @@
"afk_command_move_message": "Ich verschiebe dich ja schon... (◔_◔)",
"game_server": {
"error": {
"nothing_found": "Keine Level Einträge gefunden."
Contributor
"nothing_found": "Keine Leveleinträge gefunden."
```json "nothing_found": "Keine Leveleinträge gefunden." ```
edraft marked this conversation as resolved
@ -0,0 +118,4 @@
return str(
f"""
UPDATE `GameServers`
SET `LastModifiedAt` = '{self._modified_at}'
Contributor

Ist das so richtig, dass nur "LastModifiedAt" geupdatet wird und keine weitere Variable?

Ist das so richtig, dass nur "LastModifiedAt" geupdatet wird und keine weitere Variable?
Author
Owner

Alles andere soll read only sein.
Jedoch möchte ich das schnell ändern können.

Alles andere soll read only sein. Jedoch möchte ich das schnell ändern können.
edraft marked this conversation as resolved
@ -0,0 +116,4 @@
def delete_string(self) -> str:
return str(
f"""
DELETE FROM `UserGameIdents`
Contributor

Hier auch nur "LastModifiedAt" updaten?

Hier auch nur "LastModifiedAt" updaten?
Author
Owner

Alles andere soll read only sein.
Jedoch möchte ich das schnell ändern können.

Alles andere soll read only sein. Jedoch möchte ich das schnell ändern können.
edraft marked this conversation as resolved
@ -0,0 +99,4 @@
@commands.guild_only()
@CommandChecks.check_is_ready()
@CommandChecks.check_is_member_admin()
async def add(self, ctx: Context, name: str, api_key_id: int):
Contributor

Was passiert wenn man den selben API-Key nochmal hinzufügt?

Was passiert wenn man den selben API-Key nochmal hinzufügt?
Author
Owner

Technishc nicht möglich "CONSTRAINT UC_Identifier_Key UNIQUE (Identifier,Key),"
Dann wird ein entsprechender Fehler geschmissen, der so auch nicht zwangsläufig abgefangen werden müsste. (Command Error handling regelt)

Technishc nicht möglich "CONSTRAINT UC_Identifier_Key UNIQUE (`Identifier`,`Key`)," Dann wird ein entsprechender Fehler geschmissen, der so auch nicht zwangsläufig abgefangen werden müsste. (Command Error handling regelt)
edraft marked this conversation as resolved
edraft force-pushed #238 from efb6289e67 to 1b328dc20e 2023-03-06 08:05:36 +01:00 Compare
edraft requested review from Ebola-Chan 2023-03-06 08:05:44 +01:00
Ebola-Chan approved these changes 2023-03-06 08:41:16 +01:00
edraft merged commit f02268c1a1 into 1.0.0 2023-03-06 08:42:22 +01:00
edraft deleted branch #238 2023-03-06 08:42:22 +01:00
Sign in to join this conversation.
No description provided.