1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-12-04 15:24:23 +01:00
fab-manager/app/controllers/api/user_packs_controller.rb

28 lines
648 B
Ruby
Raw Normal View History

2021-06-29 11:14:36 +02:00
# frozen_string_literal: true
# API Controller for resources of type StatisticProfilePrepaidPack
2023-02-24 17:26:55 +01:00
class API::UserPacksController < API::APIController
2021-06-29 11:14:36 +02:00
before_action :authenticate_user!
def index
@user_packs = PrepaidPackService.user_packs(user, item)
2023-03-09 13:23:42 +01:00
@history = params[:history] == 'true'
@user_packs = @user_packs.includes(:prepaid_pack_reservations) if @history
2021-06-29 11:14:36 +02:00
end
private
def user
return User.find(params[:user_id]) if current_user.privileged?
current_user
end
def item
return nil if params[:priceable_type].nil?
2021-06-29 11:14:36 +02:00
params[:priceable_type].classify.constantize.find(params[:priceable_id])
end
end