Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Sistema de Gerenciamento de projetos - TCE
SGP_Backend
Commits
f22b1b6e
Commit
f22b1b6e
authored
4 months ago
by
Killian Domingues Batista
Browse files
Options
Download
Email Patches
Plain Diff
Update JustificativaController.java @PathVariable
parent
71df9bb2
Pipeline
#21031
failed with stages
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/main/java/SGP_Backend/SGP_Backend/controller/JustificativaController.java
+1
-1
...ckend/SGP_Backend/controller/JustificativaController.java
with
1 addition
and
1 deletion
+1
-1
src/main/java/SGP_Backend/SGP_Backend/controller/JustificativaController.java
View file @
f22b1b6e
...
...
@@ -20,7 +20,7 @@ public class JustificativaController {
}
@GetMapping
public
ResponseEntity
<
Justificativa
>
buscarPorProjetoId
(
@
RequestParam
(
value
=
"projetoId"
,
required
=
true
)
Long
id
)
{
public
ResponseEntity
<
Justificativa
>
buscarPorProjetoId
(
@
PathVariable
(
value
=
"projetoId"
,
required
=
true
)
Long
id
)
{
return
ResponseEntity
.
ok
(
service
.
buscarJustificativaPorProjetoId
(
id
));
}
}
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment
Menu
Projects
Groups
Snippets
Help