aboutsummaryrefslogtreecommitdiffstats
path: root/lib/active_file/site.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/active_file/site.rb')
-rw-r--r--lib/active_file/site.rb12
1 files changed, 3 insertions, 9 deletions
diff --git a/lib/active_file/site.rb b/lib/active_file/site.rb
index 31640695d5..260b84ab88 100644
--- a/lib/active_file/site.rb
+++ b/lib/active_file/site.rb
@@ -7,8 +7,6 @@ class ActiveFile::Site
end
end
- def initialize
- end
def upload(key, io)
raise NotImplementedError
@@ -26,20 +24,16 @@ class ActiveFile::Site
raise NotImplementedError
end
- def url(key)
- raise NotImplementedError
- end
- def checksum(key)
+ def url(key, expires_in: nil)
raise NotImplementedError
end
-
- def copy(from:, to:)
+ def bytesize(key)
raise NotImplementedError
end
- def move(from:, to:)
+ def checksum(key)
raise NotImplementedError
end
end