From ae55dd51ceacc1c444c6bd78fc92ac2d55d1c05a Mon Sep 17 00:00:00 2001 From: Kevin Cooper Date: Tue, 5 Sep 2023 18:17:17 -0400 Subject: [PATCH] Add reference to documentation --- app/models/cloning/exporter.rb | 3 ++- app/models/cloning/importer.rb | 3 ++- app/models/cloning/relation_expander.rb | 2 ++ 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/app/models/cloning/exporter.rb b/app/models/cloning/exporter.rb index 307524dcf6..7f36b7aba2 100644 --- a/app/models/cloning/exporter.rb +++ b/app/models/cloning/exporter.rb @@ -2,7 +2,8 @@ require "fileutils" -# TODO: This class needs tests +# Note: Documented in "Server to Server Copy" wiki page. +# TODO: This class needs tests. module Cloning # Outputs data to CSV ZIP bundle. class Exporter diff --git a/app/models/cloning/importer.rb b/app/models/cloning/importer.rb index aa4ca2e953..e7806396fc 100644 --- a/app/models/cloning/importer.rb +++ b/app/models/cloning/importer.rb @@ -1,6 +1,7 @@ # frozen_string_literal: true -# TODO: This class needs tests +# Note: Documented in "Server to Server Copy" wiki page. +# TODO: This class needs tests. module Cloning # Imports from CSV ZIP bundle. class Importer diff --git a/app/models/cloning/relation_expander.rb b/app/models/cloning/relation_expander.rb index 51aadc73d1..cf2b7048ae 100644 --- a/app/models/cloning/relation_expander.rb +++ b/app/models/cloning/relation_expander.rb @@ -1,5 +1,7 @@ # frozen_string_literal: true +# Note: Documented in "Server to Server Copy" wiki page. +# TODO: This class needs tests. module Cloning # Expands a given set of relations to include all necessary related objects. class RelationExpander