package com.pollex.pam.web.rest;
|
|
import org.springframework.http.ResponseEntity;
|
import org.springframework.web.bind.annotation.PostMapping;
|
import org.springframework.web.bind.annotation.RequestBody;
|
import org.springframework.web.bind.annotation.RequestMapping;
|
import org.springframework.web.bind.annotation.RestController;
|
|
@Deprecated
|
@RestController
|
@RequestMapping("/api/test/sendMsg")
|
public class TestSendMsgResource {
|
|
@PostMapping("/bySMS")
|
public ResponseEntity<Void> bySMS(@RequestBody Object param) {
|
|
}
|
|
@PostMapping("/byEmail")
|
public ResponseEntity<Void> byEmail(@RequestBody Object param) {
|
|
}
|
}
|