2016-11-16 00:56:29 +09:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-09-18 00:47:26 +09:00
|
|
|
class MediaController < ApplicationController
|
|
|
|
before_action :set_media_attachment
|
|
|
|
|
|
|
|
def show
|
2016-09-23 04:39:53 +09:00
|
|
|
redirect_to TagManager.instance.url_for(@media_attachment.status)
|
2016-09-18 00:47:26 +09:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def set_media_attachment
|
|
|
|
@media_attachment = MediaAttachment.where.not(status_id: nil).find(params[:id])
|
|
|
|
end
|
|
|
|
end
|