Skip to content

Commit

Permalink
Merge pull request #94 from YAPP-Github/feature/universial-link
Browse files Browse the repository at this point in the history
root path aasa file not serving
  • Loading branch information
devk0ng authored Jan 27, 2024
2 parents 4e65eed + 5b1502f commit c1ce9cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/pyonsnalcolor/admin/AdminController.java
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public class AdminController {
private FcmPushService fcmPushService;

// universial link
@GetMapping(value = {"/", "/apple-app-site-association", "/.well-known/apple-app-site-association"})
@GetMapping(value = {"/apple-app-site-association", "/.well-known/apple-app-site-association"})
public ResponseEntity<String> getAASAData() throws IOException {
byte[] jsonData = Files.readAllBytes(Paths.get("/home/aasa/apple-app-site-association"));

Expand Down

0 comments on commit c1ce9cd

Please sign in to comment.