Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions app/Http/Controllers/BuildController.php
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,7 @@ public function summary(int $build_id): View
}

return $this->vue('build-summary', 'Build Summary', [
'project-id' => $this->project->Id,
'build-id' => $this->build->Id,
'previous-build-id' => $previous_buildid,
'next-build-id' => $next_buildid,
Expand Down
8 changes: 4 additions & 4 deletions graphql/schema.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -805,7 +805,7 @@ type Build {

# TODO: Determine if there are more specific values we can use for this
"Type."
buildType: String! @rename(attribute: "type")
buildType: String! @rename(attribute: "type") @filterable

"The version of CTest used to generate this build. Example: ctest-2.9.20091218"
generator: String! @filterable
Expand Down Expand Up @@ -920,7 +920,7 @@ type Build {

files: [UploadedFile!]! @hasMany(relation: "uploadedFiles", type: CONNECTION, scopes: ["files"]) @orderBy(column: "id", direction: ASC)

subProject: SubProject! @belongsTo
subProject: SubProject @belongsTo

configure: Configure @hasOneThrough

Expand Down Expand Up @@ -1433,9 +1433,9 @@ type UploadedFile @model(class: "App\\Models\\UploadFile") {
# TODO: add the rest of the fields once types and relationships are solidified.
type SubProject {
"Unique primary key."
id: ID!
id: ID! @filterable

name: String!
name: String! @filterable
}


Expand Down
Loading