mirror of
https://github.com/Prominence/grails-translations-plugin.git
synced 2026-01-09 19:06:41 +03:00
17 lines
314 B
Groovy
17 lines
314 B
Groovy
package by.prominence.translations
|
|
|
|
class TranslationsOverviewController {
|
|
|
|
def bundleService
|
|
|
|
def index() {
|
|
|
|
render view: 'index', model: [bundles: bundleService.getBundles()]
|
|
}
|
|
|
|
def showBundles() {
|
|
|
|
render view: 'showBundles', model: [bundles: bundleService.getBundles()]
|
|
}
|
|
}
|