* Enable authorizations w/ dummy-auth * fixed: some tests run in privileged mode * Fixed tests to skip auth * npm test --silent * Added dependency to passport
6 lines
190 B
Plaintext
6 lines
190 B
Plaintext
using { sap.capire.bookshop as my } from '../db/schema';
|
|
service AdminService @(requires:'admin') {
|
|
entity Books as projection on my.Books;
|
|
entity Authors as projection on my.Authors;
|
|
}
|