2019-07-30 21:29:24 +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
|
2018-03-25 17:30:42 +00:00
|
|
|
require 'param_validation'
|
|
|
|
require 'qx'
|
|
|
|
|
|
|
|
module InsertSupporterNotes
|
|
|
|
def self.create(notes)
|
2019-07-30 21:29:24 +00:00
|
|
|
ParamValidation.new(notes,
|
|
|
|
root: { array_of_hashes: {
|
|
|
|
supporter_id: { required: true, is_integer: true },
|
|
|
|
user_id: { required: true, is_integer: true },
|
|
|
|
content: { required: true }
|
|
|
|
} })
|
2018-03-25 17:30:42 +00:00
|
|
|
inserted = Qx.insert_into(:supporter_notes)
|
2019-07-30 21:29:24 +00:00
|
|
|
.values(notes)
|
|
|
|
.timestamps
|
|
|
|
.returning('*')
|
|
|
|
.execute
|
|
|
|
InsertActivities.for_supporter_notes(inserted.map { |h| h['id'] })
|
|
|
|
inserted
|
2018-03-25 17:30:42 +00:00
|
|
|
end
|
|
|
|
end
|