aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTeddy Wing2017-08-25 12:28:20 +0200
committerTeddy Wing2017-08-25 12:28:20 +0200
commitcb4324713397871e35f5d6a502c50ffd92bf1e07 (patch)
treeeae952bfd3ae27e141d5976c53b1699e410bc601
parente18419a1b829cc790f384a80995e6de544e5ff40 (diff)
downloadchouette-core-cb4324713397871e35f5d6a502c50ffd92bf1e07.tar.bz2
Remove `controllers/support/error_format.rb`
This one doesn't do anything. The real one currently lives in `app/models/concerns/error_format.rb` (it shouldn't live there according to Robert, but for now that's the story).
-rw-r--r--app/controllers/support/error_format.rb15
1 files changed, 0 insertions, 15 deletions
diff --git a/app/controllers/support/error_format.rb b/app/controllers/support/error_format.rb
deleted file mode 100644
index 567eece80..000000000
--- a/app/controllers/support/error_format.rb
+++ /dev/null
@@ -1,15 +0,0 @@
-module Support
- module ErrorFormat extend self
-
- def detailed error_object
- error_object.errors.each do
- end
- end
-
-
- private
- def detailed_messages errors
- end
-
- end
-end