#8 Let guest to use explore menus

This commit is contained in:
2015-10-20 23:33:26 +08:00
parent b645d00c16
commit 796cf0de86
+2 -1
View File
@@ -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