mirror of
https://github.com/rickbarrette/stopwatch.git
synced 2026-04-02 17:51:59 -04:00
11 lines
156 B
Ruby
11 lines
156 B
Ruby
resources :stopwatch_timers, only: %i(new create edit update) do
|
|
collection do
|
|
get :current
|
|
end
|
|
member do
|
|
put :start
|
|
put :stop
|
|
end
|
|
end
|
|
|