Skip to content

Commit 39a2a1c

Browse files
committed
Basic authenctication.
1 parent a5a23a8 commit 39a2a1c

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

day-10/api/pom.xml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.springframework.boot</groupId>
77
<artifactId>spring-boot-starter-parent</artifactId>
8-
<version>2.7.2</version>
8+
<version>2.7.1</version>
99
<relativePath/> <!-- lookup parent from repository -->
1010
</parent>
1111
<groupId>com.bookstore</groupId>
@@ -18,6 +18,11 @@
1818
</properties>
1919
<dependencies>
2020

21+
<dependency>
22+
<groupId>org.springframework.boot</groupId>
23+
<artifactId>spring-boot-starter-security</artifactId>
24+
</dependency>
25+
2126
<dependency>
2227
<groupId>org.modelmapper</groupId>
2328
<artifactId>modelmapper</artifactId>

day-10/bs-store/src/adminpages/authors/ListAuthor.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ export default function ListAuthor() {
9999
</Table>
100100
</TableContainer>
101101
<Typography align='center' gutterBottom variant='body1'>
102-
The number of {authors?.length}.
102+
The number of author is {authors?.length}.
103103
</Typography>
104104
</div>
105105
);

0 commit comments

Comments
 (0)