diff options
Diffstat (limited to 'billing/app/controllers/billing_base_controller.rb')
-rw-r--r-- | billing/app/controllers/billing_base_controller.rb | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/billing/app/controllers/billing_base_controller.rb b/billing/app/controllers/billing_base_controller.rb new file mode 100644 index 0000000..b7f449c --- /dev/null +++ b/billing/app/controllers/billing_base_controller.rb @@ -0,0 +1,9 @@ +class BillingBaseController < ApplicationController + before_filter :assign_user + + # required for navigation to work. + def assign_user + @user = current_user + end + +end |