Skip to content

Commit

Permalink
Merge pull request #281 from julianpoy/fix-pepperplate-import-fcm-tok…
Browse files Browse the repository at this point in the history
…en-association

Fix fcmtoken relationship in pepperplate import
  • Loading branch information
julianpoy authored Jul 2, 2019
2 parents a9d52ce + 87051d7 commit 426abf2
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Backend/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ var devMode = appConfig.environment === 'dev';

Raven.config(appConfig.sentry.dsn, {
environment: appConfig.environment,
release: '1.8.1'
release: '1.8.2'
}).install();

// Routes
Expand Down
1 change: 1 addition & 0 deletions Backend/routes/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,7 @@ router.get(
include: [
{
model: FCMToken,
as: 'fcmTokens',
attributes: ['id', 'token']
}
]
Expand Down
2 changes: 1 addition & 1 deletion Frontend/src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@
</script>

<script>
window.version = '1.8.1';
window.version = '1.8.2';
</script>

<link href="build/main.css" rel="stylesheet" async>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,11 @@

<br />

<b>v1.8.2</b><br />
- Fixed an issue where pepperplate import would fail even with correct credentials<br />

<br />

<b>v1.8.1</b><br />
- Message threads now appear with newest on top<br />

Expand Down

0 comments on commit 426abf2

Please sign in to comment.