ぼざクリ タグ広場 https://hub.nizika.monster
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

75 lines
2.0 KiB

  1. Rails.application.routes.draw do
  2. get "wiki_pages/index"
  3. get "wiki_pages/show"
  4. get "wiki_pages/create"
  5. get "wiki_pages/update"
  6. get "wiki_pages/destroy"
  7. get "users/index"
  8. get "users/show"
  9. get "users/create"
  10. get "users/update"
  11. get "users/destroy"
  12. get "user_post_views/index"
  13. get "user_post_views/show"
  14. get "user_post_views/create"
  15. get "user_post_views/update"
  16. get "user_post_views/destroy"
  17. get "user_ips/index"
  18. get "user_ips/show"
  19. get "user_ips/create"
  20. get "user_ips/update"
  21. get "user_ips/destroy"
  22. get "tags/index"
  23. get "tags/show"
  24. get "tags/create"
  25. get "tags/update"
  26. get "tags/destroy"
  27. get "tag_aliases/index"
  28. get "tag_aliases/show"
  29. get "tag_aliases/create"
  30. get "tag_aliases/update"
  31. get "tag_aliases/destroy"
  32. get "settings/index"
  33. get "settings/show"
  34. get "settings/create"
  35. get "settings/update"
  36. get "settings/destroy"
  37. get "post_tags/index"
  38. get "post_tags/show"
  39. get "post_tags/create"
  40. get "post_tags/update"
  41. get "post_tags/destroy"
  42. get "nico_tag_relation/index"
  43. get "nico_tag_relation/show"
  44. get "nico_tag_relation/create"
  45. get "nico_tag_relation/update"
  46. get "nico_tag_relation/destroy"
  47. get "ip_addresses/index"
  48. get "ip_addresses/show"
  49. get "ip_addresses/create"
  50. get "ip_addresses/update"
  51. get "ip_addresses/destroy"
  52. root 'home#index'
  53. resources :posts
  54. resources :ip_addresses
  55. resources :nico_tag_relations
  56. resources :post_tags
  57. resources :settings
  58. resources :tag_aliases
  59. resources :tags
  60. resources :user_ips
  61. resources :user_post_views
  62. resources :users
  63. resources :wiki_pages
  64. # Define your application routes per the DSL in https://guides.rubyonrails.org/routing.html
  65. # Reveal health status on /up that returns 200 if the app boots with no exceptions, otherwise 500.
  66. # Can be used by load balancers and uptime monitors to verify that the app is live.
  67. # get "up" => "rails/health#show", as: :rails_health_check
  68. # Defines the root path route ("/")
  69. # root "posts#index"
  70. end