Module: Facebooker::Rails::Controller::ClassMethods
- Defined in:
- lib/facebooker/rails/controller.rb
Instance Method Summary collapse
- #ensure_application_is_installed_by_facebook_user(options = {}) ⇒ Object
-
#ensure_authenticated_to_facebook(options = {}) ⇒ Object
Creates a filter which reqires a user to have already authenticated to Facebook before executing actions.
- #request_comes_from_facebook? ⇒ Boolean
Instance Method Details
#ensure_application_is_installed_by_facebook_user(options = {}) ⇒ Object
343 344 345 |
# File 'lib/facebooker/rails/controller.rb', line 343 def ensure_application_is_installed_by_facebook_user( = {}) before_filter :ensure_application_is_installed_by_facebook_user, end |
#ensure_authenticated_to_facebook(options = {}) ⇒ Object
Creates a filter which reqires a user to have already authenticated to Facebook before executing actions. Accepts the same optional options hash which before_filter and after_filter accept.
339 340 341 |
# File 'lib/facebooker/rails/controller.rb', line 339 def ensure_authenticated_to_facebook( = {}) before_filter :ensure_authenticated_to_facebook, end |
#request_comes_from_facebook? ⇒ Boolean
347 348 349 |
# File 'lib/facebooker/rails/controller.rb', line 347 def request_comes_from_facebook? request_is_for_a_facebook_canvas? || request_is_facebook_ajax? end |