Skip to content
Snippets Groups Projects
Commit 6b1571b6 authored by Piotr Gawron's avatar Piotr Gawron
Browse files

unnecessary parameter removed

parent c5405133
No related branches found
No related tags found
2 merge requests!115Resolve "admin panel should use API",!114Resolve "admin panel should use API"
...@@ -76,7 +76,6 @@ public class UserController extends BaseController { ...@@ -76,7 +76,6 @@ public class UserController extends BaseController {
@RequestMapping(value = "/users/", method = { RequestMethod.GET }, produces = { MediaType.APPLICATION_JSON_VALUE }) @RequestMapping(value = "/users/", method = { RequestMethod.GET }, produces = { MediaType.APPLICATION_JSON_VALUE })
public List<Map<String, Object>> getUsers(// public List<Map<String, Object>> getUsers(//
@CookieValue(value = Configuration.AUTH_TOKEN) String token, // @CookieValue(value = Configuration.AUTH_TOKEN) String token, //
@PathVariable(value = "login") String login, //
@RequestParam(value = "columns", defaultValue = "") String columns// @RequestParam(value = "columns", defaultValue = "") String columns//
) throws SecurityException, ObjectNotFoundException { ) throws SecurityException, ObjectNotFoundException {
return userRest.getUsers(token, columns); return userRest.getUsers(token, columns);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment