Created
September 10, 2013 09:51
-
-
Save thomasstr/6507270 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class ApplicationController < ActionController::Base | |
# Prevent CSRF attacks by raising an exception. | |
# For APIs, you may want to use :null_session instead. | |
protect_from_forgery with: :exception | |
before_filter :authenticate_admin! | |
default_scope { where(company_id = current_admin.company_id ) } | |
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
I'm making a site, | |
which i want to add different companies, | |
but they should not be allowed to see each other. | |
How can i solve/do this? | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment