Skip to content

Instantly share code, notes, and snippets.

@sck-v
Created July 25, 2014 07:21
Show Gist options
  • Save sck-v/80ae86f3d82bc0a2c61e to your computer and use it in GitHub Desktop.
Save sck-v/80ae86f3d82bc0a2c61e to your computer and use it in GitHub Desktop.
class PrivateAssetsController
before_filter :authentificate_user!
def show
# проверка на существование файла
if file
send_file(file, ....)
else
render nothing: true, status: :not_found
end
end
end
....
get '/uploads/:file', to: 'private_assets#show'
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment