adding charges table and starting the endpoint for charging for a grant

This commit is contained in:
Arjun Patel
2019-01-29 10:32:21 -08:00
parent 6ca8807a9b
commit e3b7a1699e
13 changed files with 148 additions and 9 deletions
+2
View File
@@ -57,6 +57,8 @@ app.use('/api/auth', require('./app/routes/auth.route.js'));
app.use('/api', require('./app/routes/general.route.js'));
//admin routes
app.use('/admin', require('./app/routes/admin.route'));
//stripe routes
app.use('/api/stripe', require('./app/routes/stripe.route'));
//404 not found error handling on any other routes
app.use((req, res, next) => {