ePASMed version 1.0.5
This commit is contained in:
parent
43f69757a8
commit
7413248596
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "epasmed",
|
||||
"version": "0.0.1-SNAPSHOT",
|
||||
"version": "1.0.5",
|
||||
"description": "Description for epasmed",
|
||||
"private": true,
|
||||
"license": "UNLICENSED",
|
||||
|
|
2
pom.xml
2
pom.xml
|
@ -6,7 +6,7 @@
|
|||
|
||||
<groupId>it.cnr.isti.epasmed</groupId>
|
||||
<artifactId>epasmed</artifactId>
|
||||
<version>1.0.4</version>
|
||||
<version>1.0.5</version>
|
||||
<packaging>jar</packaging>
|
||||
<name>epasmed</name>
|
||||
|
||||
|
|
|
@ -209,7 +209,8 @@ public class SyncResource {
|
|||
*
|
||||
*/
|
||||
@GetMapping("/sync/writesSingleTimeCards")
|
||||
@PreAuthorize("hasAuthority(\"" + AuthoritiesConstants.ADMIN + "\",\"" + AuthoritiesConstants.USER + "\")")
|
||||
@PreAuthorize("hasAuthority(\"" + AuthoritiesConstants.ADMIN + "\") or hasAuthority(\"" + AuthoritiesConstants.USER
|
||||
+ "\")")
|
||||
public ResponseEntity<Void> syncSingleWritesTimeCards(@RequestParam("year") String year,
|
||||
@RequestParam("month") String month, @RequestParam("fiscalCode") String fc) throws Exception {
|
||||
logger.info("REST request syncSingleWritesTimeCards)");
|
||||
|
|
Loading…
Reference in New Issue