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-09-22 21:39:53 +02:00
|
|
|
redirect_to TagManager.instance.url_for(@media_attachment.status)
|
2016-09-17 17:47:26 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def set_media_attachment
|
|
|
|
@media_attachment = MediaAttachment.where.not(status_id: nil).find(params[:id])
|
|
|
|
end
|
|
|
|
end
|