accounts_controller.rb 188 B

12345678910
  1. # frozen_string_literal: true
  2. class AccountsController < ApplicationController
  3. before_action :authenticate_user!
  4. def show
  5. @authorizations = current_user.authorizations
  6. end
  7. end