config/routes.rb in redis_web_manager-0.1.6 vs config/routes.rb in redis_web_manager-0.1.8

- old
+ new

@@ -5,13 +5,21 @@ get :configuration, to: 'configuration#index' # Information get :information, to: 'information#index' + # Keys + get 'keys' => 'keys#index' + get 'key' => 'keys#show' + get 'key/edit' => 'keys#edit', as: :edit_key + put 'keys' => 'keys#update', as: :update_key + delete 'keys' => 'keys#destroy', as: :destroy_key + # Clients get :clients, to: 'clients#index' # Actions + delete :reset, to: 'actions#reset' delete :flushdb, to: 'actions#flushdb' delete :flushall, to: 'actions#flushall' # Root root 'dashboard#index'