Replace @assert.enum with @assert.range

@assert.enum has been deprecated since April 2020: https://cap.cloud.sap/docs/releases/apr20#value-range-annotations-for-odata
@assert.range is the correct annotation to use: https://cap.cloud.sap/docs/guides/generic#assertrange-check-constraints
This commit is contained in:
Marc Becker
2021-03-23 14:12:57 +01:00
committed by Christian Georgi
parent a7e0cf61a3
commit 049345a39c

View File

@@ -17,7 +17,7 @@ service ReviewsService {
annotate Reviews with {
subject @mandatory;
title @mandatory;
rating @assert.enum;
rating @assert.range;
}
}