XSUAA Config 1

This commit is contained in:
Matthias Bühl
2020-01-30 17:32:23 +01:00
parent 6d0194acc0
commit e0e330c43a
5 changed files with 63 additions and 3 deletions

View File

@@ -5,10 +5,38 @@
"license": "SAP SAMPLE CODE LICENSE",
"dependencies": {
"@sap/cds": "latest",
"express": "*"
"express": "*",
"passport": "^0.4.1"
},
"scripts": {
"start": "cds run --in-memory?",
"watch": "cds watch"
},
"auth": {
"passport": {
"strategy": "mock",
"users": {
"alice": {
"password": "123",
"ID": "alice",
"roles": [
"admin",
"authenticated-user"
],
"xs.user.attributes": {
"country": [
"US"
]
}
},
"bob": {
"password": "123",
"ID": "bob",
"roles": [
"authenticated-user"
]
}
}
}
}
}