lib/foyer/omniauth_callbacks_controller.rb in foyer-0.1.2 vs lib/foyer/omniauth_callbacks_controller.rb in foyer-0.1.3
- old
+ new
@@ -1,8 +1,13 @@
module Foyer
class OmniauthCallbacksController < ActionController::Base
include Controller::Helpers
+ def callback
+ raise NotImplementedError
+ end
+
+ protected
def after_sign_in_path
origin || root_path
end
private