Skip to content

Commit

Permalink
Practicum 12 for SE Class
Browse files Browse the repository at this point in the history
  • Loading branch information
Your Name committed Apr 5, 2024
1 parent 276252e commit 050e862
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
5 changes: 1 addition & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1 @@
# Software Engineering Practicum
### Group Members
#### - Soham Pingat
#### - Akanksha Bankhele
Practicum by Soham Pingat and Akanksha Bankhele
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
import org.springframework.security.authentication.AuthenticationManager;
import org.springframework.security.authentication.UsernamePasswordAuthenticationToken;
import org.springframework.security.core.Authentication;
import org.springframework.web.bind.annotation.CrossOrigin;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RestController;
Expand All @@ -14,6 +15,7 @@
import edu.iu.abankhele.primesservice.service.TokenService;

@RestController
@CrossOrigin({"http://127.0.0.1:5500"})
public class AuthenticationController {

private IAuthenticationService authenticationService;
Expand Down

0 comments on commit 050e862

Please sign in to comment.