2018-05-07 16:47:29 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
2017-06-10 19:36:12 +03:00
|
|
|
class OpenidsController < ApplicationController
|
|
|
|
|
load_and_authorize_resource :user
|
|
|
|
|
load_and_authorize_resource through: :user
|
|
|
|
|
|
|
|
|
|
def destroy
|
|
|
|
|
@openid.destroy
|
|
|
|
|
redirect_to :back
|
|
|
|
|
end
|
|
|
|
|
end
|