7e81b2e132
• Updates: - to controllers
12 lines
192 B
Ruby
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
|