Change donations to contrbutions, add tabbed nav

Introduces components for tabbed navigation and adds a tab menu and item
for non-financial contributions to the donations/contributions page.
This commit is contained in:
Râu Cao
2022-12-12 14:05:31 +01:00
parent 7c4106d7a2
commit df3f91e2d0
12 changed files with 91 additions and 9 deletions

View File

@@ -15,9 +15,13 @@ Rails.application.routes.draw do
get 'security', to: 'security#index'
resources :invitations, only: ['index', 'show', 'create', 'destroy']
namespace :contributions do
root to: 'donations#index'
get 'projects', to: 'projects#index'
resources :donations, only: ['index']
end
resources :donations
resources :invitations, only: ['index', 'show', 'create', 'destroy']
get 'wallet', to: 'wallet#index'
get 'wallet/transactions', to: 'wallet#transactions'