2019-07-02 03:10:25 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class Api::V1::Timelines::DirectController < Api::BaseController
|
2020-08-19 17:34:17 -05:00
|
|
|
before_action :require_admin!
|
2019-07-02 03:10:25 -04:00
|
|
|
respond_to :json
|
|
|
|
|
|
|
|
def show
|
2020-08-19 17:34:17 -05:00
|
|
|
render json: [-1]
|
2019-07-02 03:10:25 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|