Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Walter Felipe
submeta
Commits
8dc750a7
"vscode:/vscode.git/clone" did not exist on "4ec83f75e20ef076d2b73b8954c852fb1277e465"
Commit
8dc750a7
authored
Jan 30, 2022
by
Guilherme Silva
Browse files
Criada rota para aprovação de proposta
parent
5cfd5b8e
Changes
1
Hide whitespace changes
Inline
Side-by-side
routes/web.php
View file @
8dc750a7
...
@@ -139,6 +139,8 @@ Route::group(['middleware' => ['isTemp', 'auth', 'verified']], function(){
...
@@ -139,6 +139,8 @@ Route::group(['middleware' => ['isTemp', 'auth', 'verified']], function(){
Route
::
post
(
'/projeto/substituirParticipante'
,
'TrabalhoController@trocaParticipante'
)
->
name
(
'trabalho.infoTrocaParticipante'
);
Route
::
post
(
'/projeto/substituirParticipante'
,
'TrabalhoController@trocaParticipante'
)
->
name
(
'trabalho.infoTrocaParticipante'
);
Route
::
get
(
'/showSubstituicoes'
,
'TrabalhoController@telaShowSubst'
)
->
name
(
'trabalho.telaAnaliseSubstituicoes'
)
->
middleware
(
'checkRoles:coordenador,administrador'
);
Route
::
get
(
'/showSubstituicoes'
,
'TrabalhoController@telaShowSubst'
)
->
name
(
'trabalho.telaAnaliseSubstituicoes'
)
->
middleware
(
'checkRoles:coordenador,administrador'
);
Route
::
post
(
'/aprovarSubstituicao'
,
'TrabalhoController@aprovarSubstituicao'
)
->
name
(
'trabalho.aprovarSubstituicao'
);
Route
::
post
(
'/aprovarSubstituicao'
,
'TrabalhoController@aprovarSubstituicao'
)
->
name
(
'trabalho.aprovarSubstituicao'
);
Route
::
post
(
'/aprovarProposta/{id}'
,
'TrabalhoController@aprovarProposta'
)
->
name
(
'trabalho.aprovarProposta'
);
//########## Bolsas
//########## Bolsas
Route
::
get
(
'/bolsas'
,
'ParticipanteController@listarParticipanteEdital'
)
->
name
(
'bolsas.listar'
);
Route
::
get
(
'/bolsas'
,
'ParticipanteController@listarParticipanteEdital'
)
->
name
(
'bolsas.listar'
);
Route
::
get
(
'/bolsas/alteracao/{id}/{tipo}'
,
'ParticipanteController@alterarBolsa'
)
->
name
(
'bolsa.alterar'
);
Route
::
get
(
'/bolsas/alteracao/{id}/{tipo}'
,
'ParticipanteController@alterarBolsa'
)
->
name
(
'bolsa.alterar'
);
...
...
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