mod for desktop

This commit is contained in:
Harry Bomrah 2014-11-18 20:55:07 +08:00
parent 0127345e39
commit 36c626e1ec
1 changed files with 13 additions and 4 deletions

View File

@ -1,7 +1,16 @@
class Desktop::JournalPapersController < DesktopAdminController
def index
{
"test" => "test"
}
def menu
[
{
"title" => "List",
"layout" => "list",
"data" => []
},
{
"title" => "Add/Edit",
"layout" => "form",
"data" => []
}
]
end
end