We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1ee4401 commit 391894eCopy full SHA for 391894e
app/controllers/web/support.js
@@ -10,6 +10,9 @@ const { Inquiries } = require('../../models');
10
const config = require('../../../config');
11
12
async function support(ctx) {
13
+ ctx.throw(new Error('Please email hello@lad.sh directly for requests'));
14
+
15
+ /*
16
let { body } = ctx.request;
17
18
if (config.env === 'test') ctx.ip = ctx.ip || '127.0.0.1';
@@ -92,6 +95,7 @@ async function support(ctx) {
92
95
ctx.logger.error(err, { body });
93
96
throw Boom.badRequest(ctx.translate('SUPPORT_REQUEST_ERROR'));
94
97
}
98
+ */
99
100
101
module.exports = support;
0 commit comments