]> gitweb.michael.orlitzky.com - mailshears.git/blobdiff - lib/mv/mv_plugin.rb
Move the Runner selection into the plugin.
[mailshears.git] / lib / mv / mv_plugin.rb
index 2ccb9a388572acedcb3dbb67bc36120f06381347..958f6d40f98d0fd3d3cfdb76d24000c6fcd7b844 100644 (file)
@@ -1,6 +1,6 @@
 module MvPlugin
   #
-  # Plugins for moving (renaming) accounts.
+  # Plugins for moving (renaming) users.
   #
 
   def MvPlugin.included(c)
@@ -15,13 +15,21 @@ module MvPlugin
     return @includers
   end
 
+  def runner()
+    return MvRunner
+  end
+
+  def dummy_runner()
+    return MvDummyRunner
+  end
+
   def mv_domain(from, to)
     # Rename the given domain.
     raise NotImplementedError
   end
 
-  def mv_account(from, to)
-    # Rename the given account.
+  def mv_user(from, to)
+    # Rename the given user.
     raise NotImplementedError
   end