summaryrefslogtreecommitdiff
path: root/app/controllers/admin/errors_controller.rb
blob: c578ab9f1784b2b7a6d42ab46725a881edb1ca04 (plain)
1
2
3
4
5
6
7
8
9
10
module Admin
  class ErrorsController < AdminController
    def index
    end

    def create
      raise "heck"
    end
  end
end