6772312ea7
The primary license of the project is changing to: AGPL-3.0-or-later WITH Web-Template-Output-Additional-Permission-3.0-or-later with some specific files to be licensed under the one of two licenses: CC0-1.0 LGPL-3.0-or-later This commit is one of the many steps to relicense the entire codebase. Documentation granting permission for this relicensing (from all past contributors who hold copyrights) is on file with Software Freedom Conservancy, Inc.
17 lines
701 B
Ruby
17 lines
701 B
Ruby
# License: AGPL-3.0-or-later WITH Web-Template-Output-Additional-Permission-3.0-or-later
|
|
module ListActivities
|
|
|
|
def self.with_params(params, default_activities=nil)
|
|
acts = default_activities || Activity
|
|
acts = acts.includes(:supporter, :attachment, :host).order('created_at DESC')
|
|
acts = acts.where(host_id: params[:host_id]) unless params[:host_id].blank?
|
|
acts = acts.where(attachment_id: params[:attachment_id]) unless params[:attachment_id].blank?
|
|
acts = acts.where(nonprofit_id: params[:nonprofit_id]) unless params[:nonprofit_id].blank?
|
|
if params[:public]
|
|
acts = acts.is_public
|
|
end
|
|
acts = acts.limit(params[:limit]) unless params[:limit].blank?
|
|
return acts
|
|
end
|
|
|
|
end
|