diff --git a/app/controllers/api/v1/explore_controller.rb b/app/controllers/api/v1/explore_controller.rb index 5655580..6379a24 100644 --- a/app/controllers/api/v1/explore_controller.rb +++ b/app/controllers/api/v1/explore_controller.rb @@ -1,7 +1,8 @@ class Api::V1::ExploreController < Api::V1::ApplicationController - def index + skip_before_action :authenticate_user_from_token + def index render json: ExploreMenu.order(created_at: :asc).all end