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