Package edu.ucsb.cs156.rec.controllers
Class UsersController
java.lang.Object
edu.ucsb.cs156.rec.controllers.ApiController
edu.ucsb.cs156.rec.controllers.UsersController
@RequestMapping("/api/admin/users")
@RestController
public class UsersController
extends ApiController
This is a REST controller for getting information about the users.
These endpoints are only accessible to users with the role "ROLE_ADMIN".
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptiondeleteUser_Admin
(Long id) toggleAdmin
(Long id) toggleProfessor
(Long id) toggleStudent
(Long id) org.springframework.http.ResponseEntity
<String> users()
This method returns a list of all users.Methods inherited from class edu.ucsb.cs156.rec.controllers.ApiController
genericMessage, getCurrentUser, handleGenericException
-
Constructor Details
-
UsersController
public UsersController()
-
-
Method Details
-
users
@PreAuthorize("hasRole(\'ROLE_ADMIN\')") @GetMapping("") public org.springframework.http.ResponseEntity<String> users() throws com.fasterxml.jackson.core.JsonProcessingExceptionThis method returns a list of all users. Accessible only to users with the role "ROLE_ADMIN".- Returns:
- a list of all users
- Throws:
com.fasterxml.jackson.core.JsonProcessingException
- if there is an error processing the JSON
-
users
@PreAuthorize("hasRole(\'ROLE_ADMIN\')") @GetMapping("/get") public User users(@RequestParam Long id) throws com.fasterxml.jackson.core.JsonProcessingException - Throws:
com.fasterxml.jackson.core.JsonProcessingException
-
deleteUser_Admin
-
toggleAdmin
-
toggleProfessor
-
toggleStudent
-