Time Tracking

This commit is contained in:
2020-07-01 15:54:52 +02:00
parent 0ba2f94521
commit 8f5f136607
9 changed files with 1894 additions and 2 deletions

View File

@@ -347,6 +347,26 @@ app_validationholiday_activeholiday:
path: /validator/validateholiday/activeholiday
defaults: { _controller: App\Controller\ValidationController:activeholiday }
#== Timer ====================================================================================================
app_timer:
path: /user/timer
defaults: { _controller: App\Controller\TimerController:list }
app_timer_submit:
path: /user/timer/submit
defaults: { _controller: App\Controller\TimerController:submit }
app_timer_create:
path: /user/timer/create
defaults: { _controller: App\Controller\TimerController:create }
app_timer_update:
path: /user/timer/update/{id}
defaults: { _controller: App\Controller\TimerController:update }
app_timer_delete:
path: /user/timer/delete/{id}
defaults: { _controller: App\Controller\TimerController:delete }
#== Customer ======================================================================================================
app_customer_report: