~dhis2-devs-core/dhis2/validvroom

« back to all changes in this revision

Viewing changes to dhis-2/dhis-web/dhis-web-dashboard-integration/src/main/java/org/hisp/dhis/dashboard/message/action/SendReplyAction.java

  • Committer: Stian Sandvold
  • Date: 2016-06-29 11:57:40 UTC
  • Revision ID: stian.sandvold@gmail.com-20160629115740-458dfhs28g140esi
Removed authority "F_MANAGE_TICKET" and now only check for a users connection to the feedback recipient group trough configuration

Show diffs side-by-side

added added

removed removed

Lines of Context:
97
97
        MessageConversation conversation = messageService.getMessageConversation( id );
98
98
 
99
99
        messageService.sendReply( conversation, text, metaData,
100
 
            (internal && messageService.hasAccessToInternalNotes( currentUserService.getCurrentUser() )) );
 
100
            (internal && messageService.hasAccessToManageFeedbackMessages( currentUserService.getCurrentUser() )) );
101
101
 
102
102
        return SUCCESS;
103
103
    }