works, basically

This commit is contained in:
Jens Kraemer
2020-04-24 17:20:18 +08:00
parent 70257cdee0
commit 20ccbba2c1
24 changed files with 355 additions and 27 deletions

View File

@@ -1,2 +1,10 @@
resource :stopwatch_timer, only: %i(new create edit update)
resources :stopwatch_timers, only: %i(new create edit update) do
collection do
get :current
end
member do
put :start
put :stop
end
end