mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-11 01:44:34 +08:00
90db2bace9
* Manuscript JSON data SCI-6663 * Clean code for generate manuscript data [SCI-6663] * Include project data into json [SCI-6663] * Fix hound [SCI-6663] * Fix hound [SCI-6663] * Remove manuscript naming [SCI-6663] * Add local storage assets capabilites [SCI-6663] * Rename project [SCI-6663] * Enable multple projects and clean input [SCI-6798] * Fix hound [SCI-6798]
11 lines
440 B
Ruby
11 lines
440 B
Ruby
# frozen_string_literal: true
|
|
|
|
class ProjectsJsonExportJob < ApplicationJob
|
|
def perform(task_ids, callback, user)
|
|
projects_json_export_service = ProjectsJsonExportService.new(task_ids,
|
|
callback,
|
|
user)
|
|
projects_json_export_service.generate_data
|
|
projects_json_export_service.post_request
|
|
end
|
|
end
|