added blank views files for mappings
This commit is contained in:
parent
d325cb0088
commit
a55fc2242c
6 changed files with 25 additions and 0 deletions
4
app/views/mappings/create.js.erb
Normal file
4
app/views/mappings/create.js.erb
Normal file
|
@ -0,0 +1,4 @@
|
|||
/*
|
||||
* @file
|
||||
* This javascript is returned and executed when you create a new mapping.
|
||||
*/
|
5
app/views/mappings/destroy.js.erb
Normal file
5
app/views/mappings/destroy.js.erb
Normal file
|
@ -0,0 +1,5 @@
|
|||
/*
|
||||
* @file
|
||||
* The javascript returned when destroy is called in the mappings controller
|
||||
* Unused
|
||||
*/
|
4
app/views/mappings/edit.html.erb
Normal file
4
app/views/mappings/edit.html.erb
Normal file
|
@ -0,0 +1,4 @@
|
|||
<%#
|
||||
# @file
|
||||
# This code renders the edit form for mappings. Unused.
|
||||
#%>
|
4
app/views/mappings/index.html.erb
Normal file
4
app/views/mappings/index.html.erb
Normal file
|
@ -0,0 +1,4 @@
|
|||
<%#
|
||||
# @file
|
||||
# This view could show an index of all mappings, but is unused.
|
||||
#%>
|
4
app/views/mappings/new.html.erb
Normal file
4
app/views/mappings/new.html.erb
Normal file
|
@ -0,0 +1,4 @@
|
|||
<%#
|
||||
# @file
|
||||
# This file is a form for creating new mappings. Unused.
|
||||
#%>
|
4
app/views/mappings/show.html.erb
Normal file
4
app/views/mappings/show.html.erb
Normal file
|
@ -0,0 +1,4 @@
|
|||
<%#
|
||||
# @file
|
||||
# This would show a mapping but instead is unused.
|
||||
#%>
|
Loading…
Reference in a new issue