vinc/pi.ctu.re

View on GitHub
app/controllers/account/billings_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
class Account::BillingsController < ApplicationController
  before_action :authenticate_user!

  def show
    @charges = Charge.history(user: current_user)
  end
end