From a55fc2242cd757840b497b32fdc7324314fdb2c3 Mon Sep 17 00:00:00 2001 From: Devin Howard Date: Thu, 28 Feb 2013 20:15:25 -0500 Subject: [PATCH] added blank views files for mappings --- app/views/mappings/create.js.erb | 4 ++++ app/views/mappings/destroy.js.erb | 5 +++++ app/views/mappings/edit.html.erb | 4 ++++ app/views/mappings/index.html.erb | 4 ++++ app/views/mappings/new.html.erb | 4 ++++ app/views/mappings/show.html.erb | 4 ++++ 6 files changed, 25 insertions(+) create mode 100644 app/views/mappings/create.js.erb create mode 100644 app/views/mappings/destroy.js.erb create mode 100644 app/views/mappings/edit.html.erb create mode 100644 app/views/mappings/index.html.erb create mode 100644 app/views/mappings/new.html.erb create mode 100644 app/views/mappings/show.html.erb diff --git a/app/views/mappings/create.js.erb b/app/views/mappings/create.js.erb new file mode 100644 index 00000000..ef8b6089 --- /dev/null +++ b/app/views/mappings/create.js.erb @@ -0,0 +1,4 @@ +/* + * @file + * This javascript is returned and executed when you create a new mapping. + */ diff --git a/app/views/mappings/destroy.js.erb b/app/views/mappings/destroy.js.erb new file mode 100644 index 00000000..a8653340 --- /dev/null +++ b/app/views/mappings/destroy.js.erb @@ -0,0 +1,5 @@ +/* + * @file + * The javascript returned when destroy is called in the mappings controller + * Unused + */ diff --git a/app/views/mappings/edit.html.erb b/app/views/mappings/edit.html.erb new file mode 100644 index 00000000..0151d668 --- /dev/null +++ b/app/views/mappings/edit.html.erb @@ -0,0 +1,4 @@ +<%# + # @file + # This code renders the edit form for mappings. Unused. + #%> diff --git a/app/views/mappings/index.html.erb b/app/views/mappings/index.html.erb new file mode 100644 index 00000000..17643309 --- /dev/null +++ b/app/views/mappings/index.html.erb @@ -0,0 +1,4 @@ +<%# + # @file + # This view could show an index of all mappings, but is unused. + #%> diff --git a/app/views/mappings/new.html.erb b/app/views/mappings/new.html.erb new file mode 100644 index 00000000..39dd3eb1 --- /dev/null +++ b/app/views/mappings/new.html.erb @@ -0,0 +1,4 @@ +<%# + # @file + # This file is a form for creating new mappings. Unused. + #%> diff --git a/app/views/mappings/show.html.erb b/app/views/mappings/show.html.erb new file mode 100644 index 00000000..14785fb4 --- /dev/null +++ b/app/views/mappings/show.html.erb @@ -0,0 +1,4 @@ +<%# + # @file + # This would show a mapping but instead is unused. + #%>