Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
7bb036d
feat: draft validations sample
PDT42 Aug 20, 2025
1d63214
Merge branch 'main' into draft-validation-sample
PDT42 Sep 16, 2025
2298a50
chore: upgraded outdated dependencies
PDT42 Sep 16, 2025
6018213
feat: added example assert annotations
PDT42 Sep 16, 2025
1a8a5e7
fix: missing throw
PDT42 Sep 22, 2025
adc5d7f
fix: uncomment save handler
PDT42 Sep 22, 2025
6759e9d
feat: configured mocked auth
PDT42 Sep 22, 2025
5ce7185
chore: update names & dependencies
PDT42 Sep 22, 2025
bc29a0c
fix: ignore type error
PDT42 Sep 22, 2025
aedc917
chore: update package locks
PDT42 Sep 22, 2025
5250190
feat: add standalone app router
PDT42 Sep 22, 2025
d124313
feat: add standalone app router
PDT42 Sep 22, 2025
a2a6d66
feat: update deployment id
PDT42 Sep 22, 2025
80446fa
fix: remove uaa
PDT42 Sep 22, 2025
f175050
feat: add service bindings
PDT42 Sep 22, 2025
6a2ad46
fix: update xs-app json
PDT42 Sep 22, 2025
706e536
fix: set authentication type none
PDT42 Sep 22, 2025
ab56cec
fix: set basic auth for backend
PDT42 Sep 22, 2025
2497c9d
fix: re-add xsuaa
PDT42 Sep 22, 2025
215784a
fix: generate xs-security.json
PDT42 Sep 22, 2025
ca0c916
fix: remove dedicated app router
PDT42 Sep 22, 2025
2a7df5a
fix: re-add xsuaa to deployment
PDT42 Sep 22, 2025
170c508
fix: remove generated xs-security config
PDT42 Sep 22, 2025
0478a77
fix: configure xsuaa auth
PDT42 Sep 22, 2025
417689f
fix: indent
PDT42 Sep 22, 2025
675f1a7
fix: add missing xsuaa service binding
PDT42 Sep 22, 2025
a6e249d
fix: cds add workzone
PDT42 Sep 22, 2025
fed2243
fix: remove redundantly generated prefix
PDT42 Sep 22, 2025
420b65f
fix: file extension yml not accepted
PDT42 Sep 22, 2025
30749a4
fix: update workzone config options
PDT42 Sep 22, 2025
8cbabcf
fix: comment app deployer
PDT42 Sep 23, 2025
237b491
fix: remove redundant app deployer
PDT42 Sep 23, 2025
3865596
fix: revert generic changes
PDT42 Sep 23, 2025
b10e701
fix: replace mta contents with mta-java contents
PDT42 Sep 23, 2025
496c628
fix: rename deployment
PDT42 Sep 23, 2025
863eb43
fix: rename ui apps for parallel deployment
PDT42 Sep 23, 2025
8deab12
fix: update referenced destination
PDT42 Sep 23, 2025
f26bdee
fix: bump cap java version
PDT42 Sep 23, 2025
2fa8320
fix: update package lock
PDT42 Sep 23, 2025
7c3fda0
fix: update references
PDT42 Sep 23, 2025
3543722
fix: revert path update for controller extensions
PDT42 Sep 25, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion .cdsrc.json
Original file line number Diff line number Diff line change
@@ -1 +1,6 @@
{}
{
"requires": {
"destinations": true,
"html5-repo": true
}
}
2 changes: 1 addition & 1 deletion app/common.cds
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ using { Currency } from '../db/common';


// Workarounds for overly strict OData libs and clients
annotate cds.UUID with @UI.Hidden @odata.Type : 'Edm.String';
annotate cds.UUID with @UI.Hidden;

annotate Currency with @Common.UnitSpecificScale : 'Decimals';
Loading