Add a PortfolioController to retrieve all data relevant to portfolio (Other controllers) with authentication (api-key)

This commit is contained in:
Murtadha 2024-12-13 22:15:16 -05:00
parent e22d2b6fca
commit dccae4cad0
7 changed files with 145 additions and 30 deletions

14
pom.xml
View file

@ -71,6 +71,20 @@
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-mongodb</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-security</artifactId>
</dependency>
<!-- https://mvnrepository.com/artifact/jakarta.servlet/jakarta.servlet-api -->
<dependency>
<groupId>jakarta.servlet</groupId>
<artifactId>jakarta.servlet-api</artifactId>
<version>6.1.0</version>
<scope>provided</scope>
</dependency>
</dependencies>
<build>