diff options
author | David Gay <david@davidgay.org> | 2021-06-15 19:13:55 -0400 |
---|---|---|
committer | David Gay <david@davidgay.org> | 2021-06-15 19:13:55 -0400 |
commit | 53c9df5feb8ad4ebef8f40840d29255a81edb6df (patch) | |
tree | 2b11367d054363e100db8b488bab3c816e070bf3 /config | |
parent | 362fcb62af0949b4c7ac1dfa052fa10b39d70b43 (diff) |
Reboot omens and allow infixing items (like omens) into skills
Diffstat (limited to 'config')
-rw-r--r-- | config/routes.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/config/routes.rb b/config/routes.rb index 22b8299..51d9e6c 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -28,6 +28,7 @@ Rails.application.routes.draw do scope module: :characters do get "/rankings", to: "rankings#index" post "/items/unequip/:slot", to: "items#unequip", as: :item_unequip + resources :item_infixes, only: [:create, :destroy] resources :items, only: [:index] do post "/equip", to: "items#equip" post "/use", to: "items#use" |