mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
27 lines
262 B
Ruby
27 lines
262 B
Ruby
|
class ActiveFile::Store
|
||
|
def upload(key, data)
|
||
|
end
|
||
|
|
||
|
def download(key)
|
||
|
end
|
||
|
|
||
|
def delete(key)
|
||
|
end
|
||
|
|
||
|
def exists?(key)
|
||
|
end
|
||
|
|
||
|
def url(key)
|
||
|
end
|
||
|
|
||
|
def checksum(key)
|
||
|
end
|
||
|
|
||
|
|
||
|
def copy(from_key:, to_key:)
|
||
|
end
|
||
|
|
||
|
def move(from_key:, to_key:)
|
||
|
end
|
||
|
end
|