skip authenticate api shops show

This commit is contained in:
Thein Lin Kyaw
2020-02-13 17:02:05 +06:30
parent 31f32a76e6
commit 656168c3df

View File

@@ -1,6 +1,6 @@
class Api::ShopsController < Api::ApiController
skip_before_action :authenticate, only: [:index]
skip_before_action :set_current_tenant_by_subdomain_or_name, only: [:index]
skip_before_action :authenticate, only: [:index, :show]
skip_before_action :set_current_tenant_by_subdomain_or_name, only: [:index, :show]
def index
@shops = Shop.select('id, logo, name, shop_code').where.not(cloud_url: nil).all