Files
libr-2/app/controllers/api/v1/explore_controller.rb

10 lines
199 B
Ruby

class Api::V1::ExploreController < Api::V1::ApplicationController
skip_before_action :authenticate_user_from_token
def index
render json: ExploreMenu.order(created_at: :asc).all
end
end