Skip to content

Commit

Permalink
Update production.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
joao-vasconcelos committed Oct 24, 2024
1 parent d0af563 commit bf750fe
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions server/production.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ FASTIFY.server.get('/android/v1/startup/message', async (_, reply) => {
.header('Content-Type', 'application/json; charset=utf-8')
.send([
{
build_max: 37,
build_max: 1,
build_min: null,
message_id: 'PROD-ANDROID-0082',
message_url: 'https://cmet.pt/app-navegante-android/startup/default',
presentation_type: 'changelog',
presentation_type: 'breaking',
},
]);
});
Expand All @@ -25,11 +25,11 @@ FASTIFY.server.get('/ios/v1/startup/message', async (_, reply) => {
.header('Content-Type', 'application/json; charset=utf-8')
.send([
{
build_max: 34,
build_max: 2,
build_min: null,
message_id: 'PROD-IOS-0082',
message_url: 'https://cmet.pt/app-navegante-ios/startup/default',
presentation_type: 'changelog',
presentation_type: 'breaking',
},
]);
});

0 comments on commit bf750fe

Please sign in to comment.