-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
51 changed files
with
802 additions
and
838 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 0 additions & 13 deletions
13
...adapters/src/main/kotlin/org/hexastacks/heroesdesk/kotlin/ports/inmemory/InMemoryScope.kt
This file was deleted.
Oops, something went wrong.
12 changes: 12 additions & 0 deletions
12
...adapters/src/main/kotlin/org/hexastacks/heroesdesk/kotlin/ports/inmemory/InMemorySquad.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
package org.hexastacks.heroesdesk.kotlin.ports.inmemory | ||
|
||
import org.hexastacks.heroesdesk.kotlin.squad.Name | ||
import org.hexastacks.heroesdesk.kotlin.squad.Squad | ||
import org.hexastacks.heroesdesk.kotlin.squad.SquadKey | ||
import org.hexastacks.heroesdesk.kotlin.squad.SquadMembers | ||
import org.hexastacks.heroesdesk.kotlin.impl.user.HeroIds | ||
|
||
data class InMemorySquad(val name: Name, val key: SquadKey, val members: HeroIds = HeroIds.empty) { | ||
fun toSquad(): Squad = Squad(name, key) | ||
fun toSquadMembers(): SquadMembers = SquadMembers(key, members) | ||
} |
192 changes: 96 additions & 96 deletions
192
...src/main/kotlin/org/hexastacks/heroesdesk/kotlin/ports/inmemory/InMemoryTaskRepository.kt
Large diffs are not rendered by default.
Oops, something went wrong.
2 changes: 1 addition & 1 deletion
2
...src/main/kotlin/org/hexastacks/heroesdesk/kotlin/ports/inmemory/InMemoryUserRepository.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 0 additions & 1 deletion
1
...lin/org/hexastacks/heroesdesk/kotlin/ports/inmemory/InstrumentedInMemoryUserRepository.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 8 additions & 8 deletions
16
...er/src/main/generated/org/hexastacks/heroesdesk/kotlin/ports/pgjooq/Heroesdeskschema.java
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
18 changes: 9 additions & 9 deletions
18
...ooq-pg-adapter/src/main/generated/org/hexastacks/heroesdesk/kotlin/ports/pgjooq/Keys.java
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
12 changes: 6 additions & 6 deletions
12
...q-pg-adapter/src/main/generated/org/hexastacks/heroesdesk/kotlin/ports/pgjooq/Tables.java
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
78 changes: 39 additions & 39 deletions
78
...esk/kotlin/ports/pgjooq/tables/Scope.java → ...esk/kotlin/ports/pgjooq/tables/Squad.java
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.