gab-social/app/controllers/api/v1/timelines/direct_controller.rb
mgabdev 7e81b2e132 Updates to controllers
• Updates:
- to controllers
2020-08-19 17:34:17 -05:00

12 lines
192 B
Ruby

# frozen_string_literal: true
class Api::V1::Timelines::DirectController < Api::BaseController
before_action :require_admin!
respond_to :json
def show
render json: [-1]
end
end