-
Notifications
You must be signed in to change notification settings - Fork 19
Develop triangle #120
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Develop triangle #120
Conversation
@mesfinassres hi. recall that, once you are done with your changes, you need to mark me a "Reviewers" (see panel on top-right of screen) |
public class FormController { | ||
|
||
@GetMapping("/index") | ||
public String showForm() { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why this endpoint? wouldn't make more sense that root "/" is mapped into "index.html"? ie @GetMapping("/") ... return "index.html"
?
...s/web/triangle-ssr/src/main/java/com/example/springmvcdocker/SpringMvcDockerApplication.java
Outdated
Show resolved
Hide resolved
I have finished making the changes. Sould I go ahead and do the usual git push now? |
@mesfinassres yes, you do the push. once everything is fine, and CI is green, then you notify me and I can check the PR update |
I had to change the html files which were affected by the change- root "/" is mapped into "index.html". I have pushed these changes as well :) |
Hi @arcuri82 Now, everything looks fine and shows green so you can check the PR update. |
@arcuri82
Add triangle classification logic and form processing
Implements form handling in Spring MVC to classify triangles based on side inputs.