mirror of
https://github.com/wahyd4/libr-2.git
synced 2026-08-09 21:36:12 +10:00
10 lines
199 B
Ruby
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
|