houdini/app/helpers/api/nonprofits_helper.rb

14 lines
545 B
Ruby
Raw Normal View History

2020-04-21 18:47:49 +00:00
# frozen_string_literal: true
2020-06-12 20:03:43 +00:00
# License: AGPL-3.0-or-later WITH WTO-AP-3.0-or-later
# Full license explanation at https://github.com/houdiniproject/houdini/blob/master/LICENSE
2020-04-21 18:47:49 +00:00
module Api::NonprofitsHelper
def nonprofit_slug_url(nonprofit)
nonprofit_location_url city: nonprofit.city_slug, state_code: nonprofit.state_code_slug, name: nonprofit.slug
end
def nonprofit_slug_path(nonprofit)
nonprofit_location_path city: nonprofit.city_slug, state_code: nonprofit.state_code_slug, name: nonprofit.slug
end
end