Class ArticlesController
java.lang.Object
edu.ucsb.cs156.example.controllers.ApiController
edu.ucsb.cs156.example.controllers.ArticlesController
@RequestMapping("/api/articles")
@RestController
public class ArticlesController
extends ApiController
This is a REST controller for UCSBDates
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionList all ArticlespostArticle(String title, String url, String explanation, String email, LocalDateTime dateAdded) Create a new articleMethods inherited from class edu.ucsb.cs156.example.controllers.ApiController
genericMessage, getCurrentUser, handleGenericException
-
Constructor Details
-
ArticlesController
public ArticlesController()
-
-
Method Details
-
allArticles
List all Articles- Returns:
- an iterable of Article
-
postArticle
@PreAuthorize("hasRole(\'ROLE_ADMIN\')") @PostMapping("/post") public Article postArticle(@RequestParam String title, @RequestParam String url, @RequestParam String explanation, @RequestParam String email, @RequestParam("dateAdded") @DateTimeFormat(iso=DATE_TIME) LocalDateTime dateAdded) throws com.fasterxml.jackson.core.JsonProcessingException Create a new article- Parameters:
title- the title of the articleurl- the url of the articleexplanation- the explanation of the articleemail- the email of the submitterdateAdded- the date- Returns:
- the saved Article
- Throws:
com.fasterxml.jackson.core.JsonProcessingException
-