-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- Loading branch information
Showing
30 changed files
with
53 additions
and
57 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
File renamed without changes.
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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 @@ | ||
rootProject.name = "botalka" |
12 changes: 4 additions & 8 deletions
12
...ru/itmo/lms/gateway/GatewayApplication.kt → ...ru/itmo/lms/botalka/BotalkaApplication.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 |
---|---|---|
@@ -1,16 +1,12 @@ | ||
package ru.itmo.lms.gateway | ||
package ru.itmo.lms.botalka | ||
|
||
import org.springframework.boot.autoconfigure.SpringBootApplication | ||
import org.springframework.boot.autoconfigure.jooq.JooqAutoConfiguration | ||
import org.springframework.boot.runApplication | ||
|
||
@SpringBootApplication( | ||
exclude = [ | ||
JooqAutoConfiguration::class, | ||
], | ||
) | ||
class GatewayApplication | ||
@SpringBootApplication(exclude = [JooqAutoConfiguration::class]) | ||
class BotalkaApplication | ||
|
||
fun main(args: Array<String>) { | ||
runApplication<GatewayApplication>(args = args) | ||
runApplication<BotalkaApplication>(args = args) | ||
} |
4 changes: 2 additions & 2 deletions
4
...ay/api/http/endpoint/MonitoringHttpApi.kt → ...ka/api/http/endpoint/MonitoringHttpApi.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
14 changes: 7 additions & 7 deletions
14
...gateway/api/http/endpoint/NotesHttpApi.kt → ...botalka/api/http/endpoint/NotesHttpApi.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
8 changes: 4 additions & 4 deletions
8
...s/gateway/api/http/message/NoteMapping.kt → ...s/botalka/api/http/message/NoteMapping.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
2 changes: 1 addition & 1 deletion
2
.../ru/itmo/lms/gateway/domain/model/Note.kt → .../ru/itmo/lms/botalka/domain/model/Note.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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package ru.itmo.lms.gateway.domain.model | ||
package ru.itmo.lms.botalka.domain.model | ||
|
||
data class Note( | ||
val id: Id, | ||
|
4 changes: 2 additions & 2 deletions
4
.../ru/itmo/lms/gateway/logic/NoteService.kt → .../ru/itmo/lms/botalka/logic/NoteService.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
8 changes: 4 additions & 4 deletions
8
...s/gateway/logic/basic/BasicNoteService.kt → ...s/botalka/logic/basic/BasicNoteService.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
4 changes: 2 additions & 2 deletions
4
...u/itmo/lms/gateway/storage/NoteStorage.kt → ...u/itmo/lms/botalka/storage/NoteStorage.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
12 changes: 6 additions & 6 deletions
12
...s/gateway/storage/jooq/JooqNoteStorage.kt → ...s/botalka/storage/jooq/JooqNoteStorage.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
2 changes: 1 addition & 1 deletion
2
.../lms/gateway/storage/jooq/JooqReactive.kt → .../lms/botalka/storage/jooq/JooqReactive.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
2 changes: 1 addition & 1 deletion
2
...gateway/storage/jooq/config/JooqConfig.kt → ...botalka/storage/jooq/config/JooqConfig.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
2 changes: 1 addition & 1 deletion
2
...ateway/storage/jooq/config/R2dbcConfig.kt → ...otalka/storage/jooq/config/R2dbcConfig.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
6 changes: 3 additions & 3 deletions
6
...ateway/storage/jooq/entity/NoteMapping.kt → ...otalka/storage/jooq/entity/NoteMapping.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
2 changes: 1 addition & 1 deletion
2
gateway/src/main/resources/application.yml → botalka/src/main/resources/application.yml
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
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
...src/main/resources/static/openapi/api.yml → ...src/main/resources/static/openapi/api.yml
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
openapi: 3.0.3 | ||
info: | ||
title: LMS Gateway | ||
title: LMS Botalka | ||
version: 0.0.1 | ||
servers: | ||
- url: /api/v1 | ||
|
2 changes: 1 addition & 1 deletion
2
...tlin/ru/itmo/lms/gateway/BaseTestSuite.kt → ...tlin/ru/itmo/lms/botalka/BaseTestSuite.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
4 changes: 2 additions & 2 deletions
4
...mo/lms/gateway/GatewayApplicationTests.kt → ...mo/lms/botalka/BotalkaApplicationTests.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
2 changes: 1 addition & 1 deletion
2
...ay/api/http/endpoint/MonitoringApiTest.kt → ...ka/api/http/endpoint/MonitoringApiTest.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
8 changes: 4 additions & 4 deletions
8
...gateway/api/http/endpoint/NotesApiTest.kt → ...botalka/api/http/endpoint/NotesApiTest.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
This file was deleted.
Oops, something went wrong.