Skip to content

Commit

Permalink
Doc and route
Browse files Browse the repository at this point in the history
  • Loading branch information
prytoegrian committed May 21, 2018
1 parent 93004a1 commit cc50f47
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,9 @@ Suivant les règles de l'architecture REST, les routes disponibles à ce jour so
* `GET|PUT|DELETE /absence/type/{id}`
* `GET /groupe`
* `GET /groupe/{id}`
* `GET /groupe/{id}/responsable`
* `GET /groupe/{id}/employe`
* `GET /groupe/{id}/grand_responsable`
* `GET /groupe/{id}/responsable`
* `GET /journal`
* `GET|POST /planning`
* `GET|PUT|DELETE /planning/{id}`
Expand Down
3 changes: 3 additions & 0 deletions Tools/Route/Groupe.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@

/* Dependances de groupe : grand responsable */
$this->get('/grand_responsable', 'controller:get')->setName('getGroupeGrandResponsableListe');

/* Dependances de groupe : employe */
$this->get('/employe', 'controller:get')->setName('getGroupeEmployeListe');
});

/* Collection */
Expand Down

0 comments on commit cc50f47

Please sign in to comment.