mirror of
https://github.com/rickbarrette/stopwatch.git
synced 2026-04-02 09:51:57 -04:00
- issue selection selects the project accordingly - issue / project selection updates available activities - move project / issue selector to top. more logical this way, since making a selection there may change the available activities
12 lines
178 B
Ruby
12 lines
178 B
Ruby
resources :stopwatch_timers, only: %i(new create edit update) do
|
|
collection do
|
|
get :current
|
|
post :update_form
|
|
end
|
|
member do
|
|
put :start
|
|
put :stop
|
|
end
|
|
end
|
|
|