diff options
| author | mo khan <mo@mokhan.ca> | 2014-05-29 20:52:18 -0600 |
|---|---|---|
| committer | mo khan <mo@mokhan.ca> | 2014-05-29 20:52:18 -0600 |
| commit | 0e3b5d267341ecb5a04522675808571cd008246a (patch) | |
| tree | bcbdf0b22f9a9a6053107845198646db377549d4 /app/controllers/admin/errors_controller.rb | |
| parent | 513c06bef7aaf09b9f51be2c59ddca48f016be8a (diff) | |
add errors controller to raise errors to see if emails are getting delivered when there is an error.
Diffstat (limited to 'app/controllers/admin/errors_controller.rb')
| -rw-r--r-- | app/controllers/admin/errors_controller.rb | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/app/controllers/admin/errors_controller.rb b/app/controllers/admin/errors_controller.rb new file mode 100644 index 00000000..c578ab9f --- /dev/null +++ b/app/controllers/admin/errors_controller.rb @@ -0,0 +1,10 @@ +module Admin + class ErrorsController < AdminController + def index + end + + def create + raise "heck" + end + end +end |
