aboutsummaryrefslogtreecommitdiffstats
path: root/lib/active_file
diff options
context:
space:
mode:
Diffstat (limited to 'lib/active_file')
-rw-r--r--lib/active_file/site.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/active_file/site.rb b/lib/active_file/site.rb
index d7035a3f09..2a9043567c 100644
--- a/lib/active_file/site.rb
+++ b/lib/active_file/site.rb
@@ -28,11 +28,11 @@ class ActiveFile::Site
end
- def copy(from_key:, to_key:)
+ def copy(from:, to:)
raise NotImplementedError
end
- def move(from_key:, to_key:)
+ def move(from:, to:)
raise NotImplementedError
end
end