9 lines
228 B
Ruby
9 lines
228 B
Ruby
class UserApplicationsController < ApplicationController
|
|
before_action :authenticate_user!
|
|
|
|
def index
|
|
respond_to do |format|
|
|
format.all { @user_apps = UserApplicationsPresenter.new current_user }
|
|
end
|
|
end
|
|
end
|