Random Email (#97)

* add random email

* Update inbound_modal.html

* Update inbound_modal.html

* [bug] fix client nil for other types

Co-authored-by: Hossin Asaadi <hossin.asaadi@gmail.com>
This commit is contained in:
HassanArdeshir
2022-11-21 14:08:13 +03:30
committed by GitHub
parent 41cba886fd
commit f109991313
5 changed files with 112 additions and 5 deletions

View File

@@ -23,7 +23,7 @@ func (a *BaseController) checkLogin(c *gin.Context) {
}
func I18n(c *gin.Context , name string, data ...string) string{
func I18n(c *gin.Context , name string) string{
anyfunc, _ := c.Get("I18n")
i18n, _ := anyfunc.(func(key string, params ...string) (string, error))