Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@

import java.util.List;


//teste

@RestController
@RequestMapping("/api/ranking")
public class RankingController {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,14 @@ public void createEvent(String eventName, LocalDate eventDate, String eventLocat
evento.setDescricao(eventDescription);
evento.setImagemUrl(imagemUrl);

// Save the event to the database using the repository



//teste



//teste bug PR // Save the event to the database using the repository
eventoRepository.save(evento);


Expand Down