1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-11-29 10:24:20 +01:00
fab-manager/app/controllers/open_api/v1/invoices_controller.rb

28 lines
703 B
Ruby
Raw Normal View History

# OpenAPI controller for the invoices
2016-05-04 18:17:50 +02:00
class OpenAPI::V1::InvoicesController < OpenAPI::V1::BaseController
2016-05-05 15:02:02 +02:00
extend OpenAPI::ApiDoc
expose_doc
2016-05-04 18:17:50 +02:00
def index
@invoices = Invoice.order(created_at: :desc)
@invoices = @invoices.where(user_id: params[:user_id]) if params[:user_id].present?
2016-05-04 18:17:50 +02:00
return unless params[:page].present?
@invoices = @invoices.page(params[:page]).per(per_page)
paginate @invoices, per_page: per_page
2016-05-04 18:17:50 +02:00
end
def download
@invoice = Invoice.find(params[:id])
send_file File.join(Rails.root, @invoice.file), type: 'application/pdf', disposition: 'inline', filename: @invoice.filename
end
private
def per_page
params[:per_page] || 20
end
2016-05-04 18:17:50 +02:00
end