11 lines
244 B
Ruby
11 lines
244 B
Ruby
module Api
|
|
module OpenidConnect
|
|
class UserApplicationsController < ApplicationController
|
|
before_action :authenticate_user!
|
|
|
|
def index
|
|
@user_apps = UserApplicationsPresenter.new current_user
|
|
end
|
|
end
|
|
end
|
|
end
|