-
Notifications
You must be signed in to change notification settings - Fork 2
Description
redmine: Redmine 6.0.4.stable
Redmine Time Logging App: 1.3 master(25-03-16)
docker compose: https://github.com/docker-library/redmine/tree/master/6.0/bookworm
I had to extend routes.rb to
get "time_logging_app", to: "time_logging_app#index"
get "time_logging_app/show", to: "time_logging_app#show"
get "time_logging_app/edit", to: "time_logging_app#edit"
match "time_logging_app/time_entries", to: "time_logging_app#time_entries", via: [:get, :post, :put, :delete]
get "time_logging_app/projects_and_issues", to: "time_logging_app#projects_and_issues"
get "time_logging_app/recent", to: "time_logging_app#recent"
get "time_logging_app/spent_time", to: "time_logging_app#spent_time"
get "time_logging_app/overview", to: "time_logging_app#overview"
for the plugin to run.