Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion app/controllers/identities_controller.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// Identities Controller
class IdentitiesController < ApplicationController
# before_action :logged_in_user, only: [:create, :destroy]
skip_before_filter :verify_authenticity_token, :only => [:update]
Expand Down Expand Up @@ -29,4 +30,4 @@ def destroy
def identity_params
params.require(:identity).permit([:provider, :url])
end
end
end