You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
265 B

  1. # frozen_string_literal: true
  2. class Settings::ExportsController < ApplicationController
  3. layout 'admin'
  4. before_action :authenticate_user!
  5. before_action :set_account
  6. def show; end
  7. private
  8. def set_account
  9. @account = current_user.account
  10. end
  11. end