dhis2-devs team mailing list archive
-
dhis2-devs team
-
Mailing list archive
-
Message #26065
[Branch ~dhis2-devs-core/dhis2/trunk] Rev 12930: Interpretation web api, returning message when interpretation not found for comment
------------------------------------------------------------
revno: 12930
committer: Lars Helge Øverland <larshelge@xxxxxxxxx>
branch nick: dhis2
timestamp: Tue 2013-11-12 16:04:52 +0100
message:
Interpretation web api, returning message when interpretation not found for comment
modified:
dhis-2/dhis-web/dhis-web-api/src/main/java/org/hisp/dhis/api/controller/InterpretationController.java
--
lp:dhis2
https://code.launchpad.net/~dhis2-devs-core/dhis2/trunk
Your team DHIS 2 developers is subscribed to branch lp:dhis2.
To unsubscribe from this branch go to https://code.launchpad.net/~dhis2-devs-core/dhis2/trunk/+edit-subscription
=== modified file 'dhis-2/dhis-web/dhis-web-api/src/main/java/org/hisp/dhis/api/controller/InterpretationController.java'
--- dhis-2/dhis-web/dhis-web-api/src/main/java/org/hisp/dhis/api/controller/InterpretationController.java 2013-10-03 14:24:37 +0000
+++ dhis-2/dhis-web/dhis-web-api/src/main/java/org/hisp/dhis/api/controller/InterpretationController.java 2013-11-12 15:04:52 +0000
@@ -247,6 +247,14 @@
@PathVariable( "uid" ) String uid,
@RequestBody String text, HttpServletResponse response )
{
+ Interpretation interpretation = interpretationService.getInterpretation( uid );
+
+ if ( interpretation == null )
+ {
+ ContextUtils.conflictResponse( response, "Interpretation does not exist: " + uid );
+ return;
+ }
+
interpretationService.addInterpretationComment( uid, text );
ContextUtils.createdResponse( response, "Commented created", InterpretationController.RESOURCE_PATH + "/" + uid );