14 lines
350 B
Ruby
14 lines
350 B
Ruby
|
module FetchCampaign
|
||
|
|
||
|
def self.with_params(params, nonprofit=nil)
|
||
|
nonprofit ||= FetchNonprofit.with_params(params)
|
||
|
if params[:campaign_slug]
|
||
|
return nonprofit.campaigns.where(slug: params[:campaign_slug]).last
|
||
|
elsif params[:campaign_id] || params[:id]
|
||
|
return nonprofit.campaigns.find(params[:campaign_id] || params[:id])
|
||
|
end
|
||
|
end
|
||
|
|
||
|
end
|
||
|
|