Skip to content
Snippets Groups Projects
Commit abf5c109 authored by Nathan Hertz's avatar Nathan Hertz
Browse files

Added capability request's `ingested` boolean to front-end model and back-end JSON

serialization
parent 17d30e5f
No related branches found
No related tags found
1 merge request!342WS-516: UI for showing ingestion complete (archived status)
......@@ -7,6 +7,7 @@ export interface CapabilityRequest {
state: string;
parameters: JsonObject;
current_execution: CapabilityExecution;
ingested: boolean;
created_at: string;
updated_at: string;
type: string;
......
......@@ -171,6 +171,7 @@ class CapabilityRequest(Base, CapabilityRequestIF):
"capability_name": self.capability_name,
"state": self.state,
"parameters": self.current_version.parameters if self.current_version else None,
"ingested": self.ingested,
"created_at": self.created_at.isoformat(),
"updated_at": self.updated_at.isoformat(),
"current_execution": self.current_execution.__json__()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment