Added test functionality (getting list of bundles with translations).

This commit is contained in:
Prominence
2016-06-23 16:09:19 +03:00
committed by Prominence
parent 9d7c146f99
commit fe06a6d5d3
21 changed files with 131 additions and 3 deletions
@@ -0,0 +1,13 @@
package by.prominence.translations
class TranslationsOverviewController {
def bundleService
def index() { }
def showBundles() {
render view: 'showBundles', model: [bundles: bundleService.getBundles()]
}
}