Created
May 24, 2016 17:29
-
-
Save angelsystem/3512932641cb4e6688b8a4b094be08fc to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def thumbnail | |
raise ActionController::RoutingError.new('Not Found') unless @file.thumbnail? | |
if stale?(@file, public: true, template: false) | |
send_file(@file.thumbnail_path, disposition: 'inline', type: 'image/png', filename: thumbnail_filename) | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment