21
1
Fork 0
mirror of https://github.com/Evolix/chexpire.git synced 2024-05-14 06:28:38 +02:00
chexpire/config/routes.rb
2018-05-24 14:26:14 +02:00

17 lines
1.3 KiB
Ruby

# == Route Map
#
# Prefix Verb URI Pattern Controller#Action
# root GET / pages#home
# rails_service_blob GET /rails/active_storage/blobs/:signed_id/*filename(.:format) active_storage/blobs#show
# rails_blob_representation GET /rails/active_storage/representations/:signed_blob_id/:variation_key/*filename(.:format) active_storage/representations#show
# rails_disk_service GET /rails/active_storage/disk/:encoded_key/*filename(.:format) active_storage/disk#show
# update_rails_disk_service PUT /rails/active_storage/disk/:encoded_token(.:format) active_storage/disk#update
# rails_direct_uploads POST /rails/active_storage/direct_uploads(.:format) active_storage/direct_uploads#create
# In order to update the route map above,
# run `bundle exec annotate -r` after modifying this file
Rails.application.routes.draw do
# For details on the DSL available within this file, see http://guides.rubyonrails.org/routing.html
root to: "pages#home"
end