I’ve got Discourse, Docker manager, and Who’s Online.
I only update Discourse via the command line, but I’m curious about /admin/update anyway. Why are two plugins there and not others? Who’s Online appears separately at /admin/plugins (Docker manager doesn’t).
Maybe someone on the team or a more experienced user can correct me if I’m wrong, I understand that technically that is their function and because of that it is not appears on admin/plugins page:
DockerManager::Engine.routes.draw do
scope "/admin", constraints: AdminConstraint.new do
get "/upgrade", to: redirect("/admin/update")
get "/upgrade/:id", to: redirect("/admin/update/%{id}")
get "/update" => "admin#index"
get "/update/:id" => "admin#index"
# ...
end
end