- Booking Event (with email to user and admin)

- Cancel Event (with email to user and admin)
- Store into mongodb
This commit is contained in:
Paolo Arena
2019-10-05 20:01:56 +02:00
parent 507f465313
commit 8f69856c57
37 changed files with 758 additions and 46 deletions

View File

@@ -36,6 +36,8 @@ const users = [{
idapp: '1',
email: 'paoloa.rena77@gmail.com',
username: 'paoloar77B',
name: 'Paolo',
surname: 'Arena',
password: mypwdcrypted,
tokens: [{
access: 'auth',
@@ -50,6 +52,8 @@ const users = [{
lang: 'it',
idapp: '1',
email: 'pa@com',
name: 'Paolo2',
surname: 'Arena2',
password: mypwdcrypted,
username: 'paoloar77C',
tokens: [{
@@ -64,7 +68,9 @@ const users = [{
idapp: '1',
email: 'pao.loarena77@gmail.com',
password: mypwdcrypted,
username: 'paoloar77A'
username: 'paoloar77A',
name: 'Paolo3',
surname: 'Arena3',
}];
const userjson = JSON.stringify(users[0]);