Class: Stormpath::Rails::Facebook::CreateController

Inherits:
SocialController show all
Defined in:
app/controllers/stormpath/rails/facebook/create_controller.rb

Instance Method Summary collapse

Methods inherited from SocialController

#login_the_account, #respond_with_error, #respond_with_success

Instance Method Details

#callObject



5
6
7
8
9
10
11
12
# File 'app/controllers/stormpath/rails/facebook/create_controller.rb', line 5

def call
  begin
    ()
    respond_with_success
  rescue NoFacebookAuthorizationError => error
    respond_with_error(error)
  end
end