Sha256: 193fb8acbb11ceed12c8b966260b0fc0887e264892ea4e39744418d3791b2a95
Contents?: true
Size: 631 Bytes
Versions: 3
Compression:
Stored size: 631 Bytes
Contents
# frozen_string_literal: true RedisWebManager::Engine.routes.draw do # Configuration 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' end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
redis_web_manager-0.2.1 | config/routes.rb |
redis_web_manager-0.2.0 | config/routes.rb |
redis_web_manager-0.1.8 | config/routes.rb |