2016-11-15 16:56:29 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-09-17 17:47:26 +02:00
|
|
|
class MediaController < ApplicationController
|
|
|
|
before_action :set_media_attachment
|
|
|
|
|
|
|
|
def show
|
2016-12-21 00:13:13 +01:00
|
|
|
redirect_to @media_attachment.file.url(:original)
|
2016-09-17 17:47:26 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def set_media_attachment
|
2017-01-06 00:21:12 +01: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-17 17:47:26 +02:00
|
|
|
end
|
|
|
|
end
|