13 lines
488 B
Ruby
13 lines
488 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
# License: AGPL-3.0-or-later WITH Web-Template-Output-Additional-Permission-3.0-or-later
|
||
|
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
|