Fix route bugs for nonprofits_controller

This commit is contained in:
Eric Schultz 2019-01-28 14:28:15 -06:00 committed by Luis Castro
parent b4ebaa8102
commit cb1c5f2f8c
No known key found for this signature in database
GPG key ID: 0A8F33D4C4E27639

View file

@ -121,11 +121,11 @@ Rails.application.routes.draw do
resources(:nonprofits, {only: [:show, :create, :update, :destroy]}) do
post(:onboard, {on: :collection})
get(:profile_todos)
get(:recurring_donation_stats)
get(:profile_todos, {on: :member})
get(:recurring_donation_stats, {on: :member})
get(:search, {on: :collection})
get(:dashboard_todos)
put(:verify_identity)
get(:dashboard_todos, {on: :member})
put(:verify_identity, {on: :member})
resources(:roles, {only: [:create, :destroy]})