blob: dc151949e0084b0e1fa695f29dcb493530abd853 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
class BillingBaseController < ApplicationController
before_filter :assign_user
helper 'billing'
# required for navigation to work.
def assign_user
@user = current_user
end
end
|