aboutsummaryrefslogtreecommitdiffstats
path: root/app/views/line_footnotes/show.rabl
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/line_footnotes/show.rabl')
-rw-r--r--app/views/line_footnotes/show.rabl9
1 files changed, 9 insertions, 0 deletions
diff --git a/app/views/line_footnotes/show.rabl b/app/views/line_footnotes/show.rabl
new file mode 100644
index 000000000..5cec1ceb5
--- /dev/null
+++ b/app/views/line_footnotes/show.rabl
@@ -0,0 +1,9 @@
+collection @footnotes
+
+node do |footnote|
+ {
+ :id => footnote.id,
+ :code => footnote.code,
+ :label => footnote.label
+ }
+end