This repository has been archived on 2021-11-24. You can view files and clone it, but cannot push or open issues or pull requests.
phone_app/app/controllers/public/p_customer_sheets_controller.rb
2021-08-23 10:26:02 +02:00

20 lines
315 B
Ruby

class Public::PCustomerSheetsController < ApplicationController
layout "public"
before_action :auth_p_customer
def index
end
def show
if @p_customer_sheet = current_p_customer.p_customer_sheets.where(:id => params[:id]).first
else
redirect_to public_my_account_path
end
end
end