mirror of
https://github.com/openSUSE/osem.git
synced 2026-01-25 14:29:51 -05:00
10 lines
196 B
Ruby
10 lines
196 B
Ruby
class OpenidsController < ApplicationController
|
|
load_and_authorize_resource :user
|
|
load_and_authorize_resource through: :user
|
|
|
|
def destroy
|
|
@openid.destroy
|
|
redirect_to :back
|
|
end
|
|
end
|