Dieser Commit ist enthalten in:
Chaoscaot 2023-01-21 19:56:31 +01:00
Ursprung af638716ad
Commit 5820fed03e
2 geänderte Dateien mit 8 neuen und 1 gelöschten Zeilen

Datei anzeigen

@ -59,5 +59,9 @@ class Groups {
newGroup.fights.add(fight) newGroup.fights.add(fight)
kGroupsFile.writeBytes(Cbor.encodeToByteArray(groups)) kGroupsFile.writeBytes(Cbor.encodeToByteArray(groups))
} }
fun getAllGroups(): List<String> {
return groups.groups.map { it.name }
}
} }
} }

Datei anzeigen

@ -1,7 +1,7 @@
package de.steamwar.routes package de.steamwar.routes
import de.steamwar.ResponseError import de.steamwar.ResponseError
import de.steamwar.sql.SQLWrapperImpl import de.steamwar.data.Groups
import de.steamwar.sql.SchematicType import de.steamwar.sql.SchematicType
import de.steamwar.sql.SteamwarUser import de.steamwar.sql.SteamwarUser
import de.steamwar.sql.loadSchematicTypes import de.steamwar.sql.loadSchematicTypes
@ -50,5 +50,8 @@ fun Routing.configureDataRoutes() {
get { get {
call.respondText("Hello World!") call.respondText("Hello World!")
} }
get("/groups") {
call.respond(Groups.getAllGroups())
}
} }
} }