This repository has been archived on 2024-08-27. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
redstoner.com/config/routes.rb

55 lines
1.1 KiB
Ruby

Redstoner::Application.routes.draw do
resources :blogposts, path: '/blog' do
resources :comments
end
resources :statics, only: [:home, :donate], path: '/' do
collection do
get 'donate'
get 'home'
get 'index'
end
end
resources :info
resources :users do
member do
get 'confirm'
get 'edit_login'
get 'edit_notifications'
put 'update_login'
end
collection do
get 'lost_password'
post 'reset_password'
end
end
resources :forumgroups, path: '/forums/groups'
resources :forums, path: '/forums'
resources :forumthreads, path: '/forums/threads' do
resources :threadreplies, path: 'replies'
end
resources :tools do
collection do
post 'render_markdown'
post 'render_mini_markdown'
end
end
# get '/status' => 'status#show'
get 'login' => 'sessions#new'
post 'login' => 'sessions#create'
get 'become' => 'sessions#become'
get 'revert' => 'sessions#revert'
get 'logout' => 'sessions#destroy'
get 'signup' => 'users#new'
# post 'paypal' => 'paypal#create'
root to: 'statics#index'
end