image manager optimization, i18n

This commit is contained in:
lealife
2015-10-14 18:47:01 +08:00
parent ad295d97c8
commit 6a35f98f89
24 changed files with 4707 additions and 9 deletions

View File

@ -14,6 +14,12 @@ type Album struct {
BaseController
}
// 图片管理, iframe
func (c Album) Index() revel.Result {
c.SetLocale();
return c.RenderTemplate("album/index.html")
}
// all albums by userId
func (c Album) GetAlbums() revel.Result {
re := albumService.GetAlbums(c.GetUserId())