generated from leanix/repository-template
-
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.
CID-2744: addressing PR comments, add runId in calls to backend, and …
…update RepositoryDto
- Loading branch information
1 parent
9dfedf6
commit 68f0dbc
Showing
6 changed files
with
38 additions
and
28 deletions.
There are no files selected for viewing
14 changes: 7 additions & 7 deletions
14
src/main/kotlin/net/leanix/githubagent/dto/RepositoryDto.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,17 +1,17 @@ | ||
package net.leanix.githubagent.dto | ||
|
||
import net.leanix.githubbroker.connector.adapter.graphql.data.enums.RepositoryVisibility | ||
|
||
data class RepositoryDto( | ||
val id: String, | ||
val name: String, | ||
val fullName: String, | ||
val description: String?, | ||
val url: String, | ||
val organization: RepositoryOrganizationDto, | ||
val isArchived: Boolean, | ||
val visibility: RepositoryVisibility, | ||
val updatedAt: String, | ||
val languages: List<String>, | ||
val topics: List<String>, | ||
val manifest: String?, | ||
) | ||
|
||
class RepositoryOrganizationDto( | ||
val id: String, | ||
val name: String | ||
val manifestFileContent: String?, | ||
) |
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 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 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 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 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