diff options
Diffstat (limited to 'config')
-rw-r--r-- | config/routes.rb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/config/routes.rb b/config/routes.rb index 7ed608a..a860321 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -23,6 +23,7 @@ Rails.application.routes.draw do resources :characters, only: [:show, :new, :create] do post "/combat_styles", to: "characters#set_combat_styles" scope module: :characters do + get "/rankings", to: "rankings#index" post "/items/unequip/:slot", to: "items#unequip", as: :item_unequip resources :items, only: [:index] do post "/equip", to: "items#equip" @@ -35,6 +36,8 @@ Rails.application.routes.draw do end end + get "/leaderboard", to: "leaderboard#index" + get "/bazaar", to: "bazaar#index" post "/bazaar", to: "bazaar#create_order", as: :bazaar_order post "/bazaar/accept/:id", to: "bazaar#accept_offer", as: :bazzar_accept_offer |