formatting and linting work
This commit is contained in:
parent
c02cf8c12e
commit
3b39d8cf08
8 changed files with 290 additions and 323 deletions
|
|
@ -2,8 +2,6 @@ const express = require('express');
|
|||
const cookieParser = require('cookie-parser');
|
||||
const path = require('path');
|
||||
|
||||
const sequelize = require('./database');
|
||||
|
||||
const app = express();
|
||||
const port = 3000;
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,3 @@
|
|||
const { exec } = require('child_process');
|
||||
|
||||
const invitesService = require('../services/invitesService');
|
||||
|
||||
module.exports = async function createAppInvite(inviterNpub) {
|
||||
|
|
|
|||
|
|
@ -45,7 +45,7 @@ router.get('/signup/nostr-challenge', async (req, res) => {
|
|||
} catch (error) {
|
||||
return res.status(500).json({
|
||||
success: false,
|
||||
message: 'Unexpected error.',
|
||||
message: `Unexpected error: ${error}`,
|
||||
});
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue