mirror of
https://github.com/openSUSE/osem.git
synced 2026-01-27 15:33:22 -05:00
12 lines
227 B
Ruby
12 lines
227 B
Ruby
# frozen_string_literal: true
|
|
|
|
class OpenidsController < ApplicationController
|
|
load_and_authorize_resource :user
|
|
load_and_authorize_resource through: :user
|
|
|
|
def destroy
|
|
@openid.destroy
|
|
redirect_to :back
|
|
end
|
|
end
|