add custom authentication checks

This commit is contained in:
Dzmitry_Tamashevich@epam.com
2020-11-04 23:01:08 +03:00
committed by Daniel Hutzel
parent 3cf02cb567
commit 70b0c85346
14 changed files with 172 additions and 112 deletions

View File

@@ -1,3 +1,5 @@
using {managed} from '@sap/cds/common';
namespace sap.capire.media.store;
aspect Named {
@@ -17,7 +19,7 @@ aspect Person {
phone : String(24);
fax : String(24);
email : String(60);
password : String(111);
password : String(500);
}
entity MediaTypes : Named {}
@@ -88,7 +90,7 @@ entity InvoiceItems {
quantity : Integer default 1;
}
entity Tracks {
entity Tracks : managed {
key ID : Integer;
name : String(200);
album : Association to Albums;