diaspora/app/controllers/user_applications_controller.rb
2016-01-04 16:49:52 +09:00

9 lines
227 B
Ruby

class UserApplicationsController < ApplicationController
before_action :authenticate_user!
def show
respond_to do |format|
format.all { @user_apps = UserApplicationsPresenter.new current_user }
end
end
end