correction affectation utilisateur, et ajout vue caendrier

This commit is contained in:
2020-07-02 10:24:18 +02:00
parent 38b8b79fb1
commit 2513eced52
4 changed files with 290 additions and 19 deletions

View File

@@ -349,23 +349,31 @@ app_validationholiday_activeholiday:
#== Timer ====================================================================================================
app_timer:
path: /user/timer
path: /timer
defaults: { _controller: App\Controller\TimerController:list }
app_timer_view:
path: /timer/event
defaults: { _controller: App\Controller\TimerController:view }
app_timer_load:
path: /timer/event/load
defaults: { _controller: App\Controller\TimerController:load }
app_timer_submit:
path: /user/timer/submit
path: /timer/submit
defaults: { _controller: App\Controller\TimerController:submit }
app_timer_create:
path: /user/timer/create
path: /timer/create
defaults: { _controller: App\Controller\TimerController:create }
app_timer_update:
path: /user/timer/update/{id}
path: /timer/update/{id}
defaults: { _controller: App\Controller\TimerController:update }
app_timer_delete:
path: /user/timer/delete/{id}
path: /timer/delete/{id}
defaults: { _controller: App\Controller\TimerController:delete }
#== Customer ======================================================================================================