-
Notifications
You must be signed in to change notification settings - Fork 29.4k
Pet controller update #2359
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
base: main
Are you sure you want to change the base?
Pet controller update #2359
Changes from all commits
b774500
d8c55de
94fc35a
2c83887
a0fa874
b38e86a
b8af30f
2ce65df
6ae9627
efd7941
6fbd3da
967aae1
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,24 @@ | ||
| name: Java CI | ||
|
|
||
| on: | ||
| push: | ||
| branches: [ main ] | ||
| pull_request: | ||
| branches: [ main ] | ||
|
|
||
| jobs: | ||
| build: | ||
| runs-on: ubuntu-latest | ||
|
|
||
| steps: | ||
| - name: Checkout code | ||
| uses: actions/checkout@v3 | ||
|
|
||
| - name: Set up Java | ||
| uses: actions/setup-java@v3 | ||
| with: | ||
| java-version: '17' | ||
| distribution: 'temurin' | ||
|
|
||
| - name: Build with Maven | ||
| run: mvn clean install |
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -4,13 +4,13 @@ | |||||
|
|
||||||
| <body> | ||||||
|
|
||||||
| <h2 th:text="#{vets}">Veterinarians</h2> | ||||||
| <h2 th:text="#{vets}">Veterinarian Directory</h2> | ||||||
|
|
||||||
| <table id="vets" class="table table-striped"> | ||||||
| <thead> | ||||||
| <tr> | ||||||
| <th th:text="#{name}">Name</th> | ||||||
| <th th:text="#{specialties}">Specialties</th> | ||||||
| <th th:text="#{name}">Veterinarian Name</th> | ||||||
| <th th:text="#{specialties}">Areas of Expertise</th> | ||||||
|
||||||
| <th th:text="#{specialties}">Areas of Expertise</th> | |
| <th th:text="#{specialties}">Specialties</th> |
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.
PR title suggests only a PetController change, but this PR also includes vet UI template updates and a major rewrite of
VetRepository.java(introducing a controller). Please align the PR title/description with the actual scope, or split the unrelated changes into separate PRs for reviewability.