summaryrefslogtreecommitdiff
path: root/app/controllers/profiles/accounts_controller.rb
blob: 5f15378c831c8ce3723145902da045ee16f8deca (plain)
1
2
3
4
5
6
7
8
9
class Profiles::AccountsController < ApplicationController
  layout "profile"

  def show
    @user = current_user
    @applications = current_user.oauth_applications
    @authorized_applications = Doorkeeper::Application.authorized_for(current_user)
  end
end