This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2016-11-15 07:56:29 -08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-09-17 08:47:26 -07:00
|
|
|
class MediaController < ApplicationController
|
|
|
|
before_action :set_media_attachment
|
|
|
|
|
|
|
|
def show
|
2016-12-20 15:13:13 -08:00
|
|
|
redirect_to @media_attachment.file.url(:original)
|
2016-09-17 08:47:26 -07:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def set_media_attachment
|
2017-01-05 15:21:12 -08: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 08:47:26 -07:00
|
|
|
end
|
|
|
|
end
|