solidusio-contrib/solidus_social

View on GitHub
app/controllers/spree/user_authentications_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

class Spree::UserAuthenticationsController < Spree::StoreController
  def index
    @authentications = spree_current_user.user_authentications if spree_current_user
  end

  def destroy
    @authentication = spree_current_user.user_authentications.find(params[:id])
    @authentication.destroy
    flash[:notice] = I18n.t('spree.destroy', scope: :authentications)
    redirect_to spree.account_path
  end
end