gab-social/app/controllers/api/v1/timelines/direct_controller.rb

12 lines
192 B
Ruby
Raw Normal View History

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