Skip to content

Commit

Permalink
Merge pull request #2464 from uselagoon/2463-environment-mutate-dates
Browse files Browse the repository at this point in the history
  • Loading branch information
tobybellwood authored Oct 30, 2021
2 parents 6ac809c + 96e6f69 commit 0878bc9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion services/api/src/resources/environment/resolvers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -605,7 +605,8 @@ export const updateEnvironment: ResolverFn = async (
route: input.patch.route,
routes: input.patch.routes,
monitoringUrls: input.patch.monitoringUrls,
autoIdle: input.patch.autoIdle
autoIdle: input.patch.autoIdle,
created: input.patch.created
}
})
);
Expand All @@ -631,6 +632,7 @@ export const updateEnvironment: ResolverFn = async (
routes: input.patch.routes,
monitoringUrls: input.patch.monitoringUrls,
autoIdle: input.patch.autoIdle,
created: input.patch.created
},
data: withK8s
}
Expand Down

0 comments on commit 0878bc9

Please sign in to comment.