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
|
2017-01-06 10:21:12 +11:00
|
|
|
@media_attachment = MediaAttachment.where.not(status_id: nil).find_by!(shortcode: params[:id])
|
|
|
|
raise ActiveRecord::RecordNotFound unless @media_attachment.status.permitted?(current_account)
|
2016-09-18 01:47:26 +10:00
|
|
|
end
|
|
|
|
end
|