feat: Update slack endpoint to support legacy slash command
Merged
requested to merge zacharysabourin/membership.eclipse.org:zacharysabourin/main/slack-app-use-legacy into main
1 unresolved thread
- feat: Update slack endpoint to support legacy slash command
Relates to #487 (closed)
Merge request reports
Activity
Filter activity
requested review from @malowe
assigned to @zacharysabourin
47 45 46 private static final String TOKEN_KEY = "token"; 47 private static final String DOMAIN_KEY = "team_domain"; 48 private static final String TEXT_KEY = "text"; 49 48 50 @Inject 49 51 SlackConfig config; 50 52 51 53 @POST 52 54 @Path("m") 53 55 @Consumes({ MediaType.APPLICATION_FORM_URLENCODED }) 54 public Response searchMemberOrg(String body) { 56 public Response searchMemberOrg(MultivaluedMap<String, String> data) { 55 57 56 LOGGER.debug("INCOMING BODY: {}", body); 58 LOGGER.info("INCOMING BODY: {}", data); changed this line in version 2 of the diff
requested review from @malowe
mentioned in commit 951d713e
mentioned in commit 9748ee9f
mentioned in merge request !727 (merged)