Skip to content

Instantly share code, notes, and snippets.

Created January 7, 2009 20:22
Show Gist options
  • Save anonymous/44400 to your computer and use it in GitHub Desktop.
Save anonymous/44400 to your computer and use it in GitHub Desktop.
class ApplicationController < ActionController::Base
before_filter :set_application
private
def set_current_account
@current_account = Account.find_by_subdomain(request.subdomains.first)
end
end
class CustomersController < ApplicationController
def index
@customers = @current_account.customers
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment