about summary refs log tree commit diff
path: root/app/controllers/admin/accounts_controller.rb
blob: e84799040cdcdd0cb1871ce97bbbd1db8c95dfa6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

class Admin::AccountsController < ApplicationController
  before_action :require_admin!

  layout 'public'

  def index
  end

  def show
  end
end