Skip to content

Commit 9291801

Browse files
committed
clean ups
1 parent 7304e55 commit 9291801

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

integrationtestapp/integration_test/mailosaur_api_client.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ class GetMessageResponse {
121121
class MailosaurAPIClient {
122122
static const String serverId = 'ncor7c1m';
123123
static const String apiURL = 'https://mailosaur.com/api/messages';
124-
static const String mailosaurAPIKey = 'udoOEVY0FNE11tTh';
124+
static const String mailosaurAPIKey = 'YOUR_API_KEY_HERE';
125125

126126
static String appUrl(String path) {
127127
if (kIsWeb) {

integrationtestapp/proxy-server/proxy_server.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ app.use((req, res, next) => {
1818
app.use(bodyParser.json());
1919
app.use(bodyParser.urlencoded({ extended: true }));
2020

21-
const mailosaurAPIKey = 'udoOEVY0FNE11tTh';
21+
const mailosaurAPIKey = 'YOUR_API_KEY_HERE';
2222

2323
// Proxy for Mailosaur API
2424
app.get('/api/messages', (req, res) => {

0 commit comments

Comments
 (0)