2016-11-16 02:56:29 +11:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-09-18 01:47:26 +10:00
|
|
|
class MediaController < ApplicationController
|
|
|
|
before_action :set_media_attachment
|
|
|
|
|
|
|
|
def show
|
2016-12-21 10:13:13 +11:00
|
|
|
redirect_to @media_attachment.file.url(:original)
|
2016-09-18 01:47:26 +10:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def set_media_attachment
|
|
|
|
@media_attachment = MediaAttachment.where.not(status_id: nil).find(params[:id])
|
|
|
|
end
|
|
|
|
end
|