drhenner/ror_ecommerce

View on GitHub
app/controllers/myaccount/store_credits_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
class Myaccount::StoreCreditsController < Myaccount::BaseController

  def show
    @store_credit = current_user.store_credit
  end

  private

  def selected_myaccount_tab(tab)
    tab == 'store_credit'
  end

end