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.
26 lines
688 B
Ruby
26 lines
688 B
Ruby
# License: AGPL-3.0-or-later WITH Web-Template-Output-Additional-Permission-3.0-or-later
|
|
require 'qx'
|
|
|
|
module UpdateSupporterNotes
|
|
|
|
def self.update(note)
|
|
Qx.update(:supporter_notes)
|
|
.set(content: note[:content], user_id: note[:user_id])
|
|
.timestamps
|
|
.where(id: note[:id])
|
|
.execute
|
|
UpdateActivities.for_supporter_notes(note)
|
|
end
|
|
|
|
# sets the deleted column to true on supporter_notes (soft delete)
|
|
# and then does a hard delete on the associated activity
|
|
def self.delete(id)
|
|
Qx.update(:supporter_notes)
|
|
.set(deleted: true)
|
|
.where(id: id)
|
|
.execute
|
|
Qx.delete_from(:activities).where(attachment_id: id).execute
|
|
end
|
|
|
|
end
|
|
|