diff options
| author | Luc Donnet | 2017-10-17 15:04:54 +0200 | 
|---|---|---|
| committer | GitHub | 2017-10-17 15:04:54 +0200 | 
| commit | b5b8886e4be8806a7357ef745c293560d32da343 (patch) | |
| tree | 362cd3ab06372886a189ff366e1813f13f94bdf6 /app | |
| parent | 4bb7669f00b7e6e622f966a11b4c727938838f22 (diff) | |
| parent | 0b744d48fdc84445f593114fe61baaafca4e17f4 (diff) | |
| download | chouette-core-b5b8886e4be8806a7357ef745c293560d32da343.tar.bz2 | |
Merge pull request #95 from af83/4727-clone-compliance-control-set
4727 clone compliance control set 
Diffstat (limited to 'app')
| -rw-r--r-- | app/workers/compliance_control_set_cloning_worker.rb | 8 | 
1 files changed, 8 insertions, 0 deletions
diff --git a/app/workers/compliance_control_set_cloning_worker.rb b/app/workers/compliance_control_set_cloning_worker.rb new file mode 100644 index 000000000..9cbe5c81a --- /dev/null +++ b/app/workers/compliance_control_set_cloning_worker.rb @@ -0,0 +1,8 @@ +class ComplianceControlSetCloningWorker +  include Sidekiq::Worker + +  def perform id, organisation_id +    ComplianceControlSetCloner.new.copy id, organisation_id +  end + +end  | 
