Skip to content

Commit b2c0c5a

Browse files
committed
fix(oauth-flow): Fixed page title on the redirect page after OAuth2 code has been received
1 parent fccbe91 commit b2c0c5a

File tree

6 files changed

+37
-33
lines changed

6 files changed

+37
-33
lines changed

package-lock.json

Lines changed: 15 additions & 15 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@
4141
"homepage": "https://emailengine.app/",
4242
"dependencies": {
4343
"@bugsnag/js": "8.1.2",
44-
"@bull-board/api": "6.5.3",
45-
"@bull-board/hapi": "6.5.3",
44+
"@bull-board/api": "6.5.4",
45+
"@bull-board/hapi": "6.5.4",
4646
"@elastic/elasticsearch": "8.15.3",
4747
"@hapi/bell": "13.0.2",
4848
"@hapi/boom": "10.0.1",

sbom.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

static/licenses.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ <h1>EmailEngine v2.49.4</h1><p>EmailEngine includes code from the following soft
116116
</tr>
117117
<tr>
118118
<td><a href="https://npmjs.com/package/@bull-board/api">@bull-board/api</a></td>
119-
<td>6.5.3</td>
119+
<td>6.5.4</td>
120120
<td>MIT</td>
121121
<td>felixmosh</td>
122122
<td></td>
@@ -126,7 +126,7 @@ <h1>EmailEngine v2.49.4</h1><p>EmailEngine includes code from the following soft
126126
</tr>
127127
<tr>
128128
<td><a href="https://npmjs.com/package/@bull-board/hapi">@bull-board/hapi</a></td>
129-
<td>6.5.3</td>
129+
<td>6.5.4</td>
130130
<td>MIT</td>
131131
<td>felixmosh</td>
132132
<td></td>
@@ -136,7 +136,7 @@ <h1>EmailEngine v2.49.4</h1><p>EmailEngine includes code from the following soft
136136
</tr>
137137
<tr>
138138
<td><a href="https://npmjs.com/package/@bull-board/ui">@bull-board/ui</a></td>
139-
<td>6.5.3</td>
139+
<td>6.5.4</td>
140140
<td>MIT</td>
141141
<td>felixmosh</td>
142142
<td></td>

translations/messages.pot

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,18 @@
11
msgid ""
22
msgstr ""
33
"Content-Type: text/plain; charset=ascii\n"
4-
"POT-Creation-Date: 2024-12-25 18:49+0000\n"
4+
"POT-Creation-Date: 2024-12-30 10:31+0000\n"
55

66
#: views/config/license.hbs:49
77
msgid "%d day"
88
msgid_plural "%d days"
99
msgstr[0] ""
1010
msgstr[1] ""
1111

12+
#: views/redirect.hbs:1
13+
msgid "Click <a href=\"%s\">here</a> to continue&mldr;"
14+
msgstr ""
15+
1216
#: views/unsubscribe.hbs:1
1317
#: views/unsubscribe.hbs:79
1418
msgid "Unsubscribe"
@@ -53,8 +57,12 @@ msgstr ""
5357
msgid "Enter your email address"
5458
msgstr ""
5559

56-
#: views/redirect.hbs:1
57-
msgid "Click <a href=\"%s\">here</a> to continue&mldr;"
60+
#: views/accounts/register/index.hbs:2
61+
msgid "Choose your email account provider"
62+
msgstr ""
63+
64+
#: views/accounts/register/index.hbs:15
65+
msgid "Standard IMAP"
5866
msgstr ""
5967

6068
#: views/accounts/register/imap.hbs:11
@@ -80,14 +88,6 @@ msgstr ""
8088
msgid "Continue"
8189
msgstr ""
8290

83-
#: views/accounts/register/index.hbs:2
84-
msgid "Choose your email account provider"
85-
msgstr ""
86-
87-
#: views/accounts/register/index.hbs:15
88-
msgid "Standard IMAP"
89-
msgstr ""
90-
9191
#: views/accounts/register/imap-server.hbs:19
9292
msgid "IMAP"
9393
msgstr ""
@@ -259,6 +259,7 @@ msgstr ""
259259
#: lib/routes-ui.js:6840
260260
#: lib/routes-ui.js:7068
261261
#: lib/routes-ui.js:7104
262+
#: workers/api.js:2127
262263
msgid "Email Account Setup"
263264
msgstr ""
264265

workers/api.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2123,7 +2123,10 @@ const init = async () => {
21232123
// have to use HTML redirect, otherwise samesite=strict cookies are not passed on
21242124
return h.view(
21252125
'redirect',
2126-
{ httpRedirectUrl },
2126+
{
2127+
pageTitleFull: gt.gettext('Email Account Setup'),
2128+
httpRedirectUrl
2129+
},
21272130
{
21282131
layout: 'public'
21292132
}

0 commit comments

Comments
 (0)