This repository was archived by the owner on Mar 10, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 18
Routes
Davide Santangelo edited this page Apr 30, 2020
·
1 revision
FeediRSS is a Ruby on Rails applications. Below is the routing obtained by launching the rake routes
command
Prefix Verb URI Pattern Controller#Action
sidekiq_web /sidekiq Sidekiq::Web
root GET / welcome#index
popular_feeds GET /feeds/popular(.:format) feeds#popular
tags_feed_entry GET /feeds/:feed_id/entries/:id/tags(.:format) entries#tags
feed_entries GET /feeds/:feed_id/entries(.:format) entries#index
feed_entry GET /feeds/:feed_id/entries/:id(.:format) entries#show
feed_logs GET /feeds/:feed_id/logs(.:format) logs#index
feed_log GET /feeds/:feed_id/logs/:id(.:format) logs#show
feed_webhooks GET /feeds/:feed_id/webhooks(.:format) webhooks#index
POST /feeds/:feed_id/webhooks(.:format) webhooks#create
feed_webhook GET /feeds/:feed_id/webhooks/:id(.:format) webhooks#show
PATCH /feeds/:feed_id/webhooks/:id(.:format) webhooks#update
PUT /feeds/:feed_id/webhooks/:id(.:format) webhooks#update
DELETE /feeds/:feed_id/webhooks/:id(.:format) webhooks#destroy
feeds GET /feeds(.:format) feeds#index
POST /feeds(.:format) feeds#create
feed GET /feeds/:id(.:format) feeds#show
entries_search_index GET /search/entries(.:format) search#entries
feeds_search_index GET /search/feeds(.:format) search#feeds
current_tokens GET /tokens/current(.:format) tokens#current
refresh_tokens POST /tokens/refresh(.:format) tokens#refresh
tokens POST /tokens(.:format) tokens#create
stats GET /stats(.:format) stats#index
Designed and developed by Davide Santangelo