Skip to content

Commit

Permalink
feat(backend-api): Add updatedAt timestamps to Edge App/Version
Browse files Browse the repository at this point in the history
  • Loading branch information
theduke committed Sep 2, 2024
1 parent 57faba0 commit 5cb6f2a
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions lib/backend-api/src/types.rs
Original file line number Diff line number Diff line change
Expand Up @@ -916,6 +916,7 @@ mod queries {
pub id: cynic::Id,
pub name: String,
pub created_at: DateTime,
pub updated_at: DateTime,
pub description: Option<String>,
pub active_version: DeployAppVersion,
pub admin_url: String,
Expand Down Expand Up @@ -1044,6 +1045,7 @@ mod queries {
pub struct DeployAppVersion {
pub id: cynic::Id,
pub created_at: DateTime,
pub updated_at: DateTime,
pub version: String,
pub description: Option<String>,
pub yaml_config: String,
Expand Down

0 comments on commit 5cb6f2a

Please sign in to comment.