func init() { revel.OnAppStart(Init) revel.InterceptMethod((*GorpController).Begin, revel.BEFORE) revel.InterceptMethod(Application.AddUser, revel.BEFORE) revel.InterceptMethod(Hotels.checkUser, revel.BEFORE) revel.InterceptMethod((*GorpController).Commit, revel.AFTER) revel.InterceptMethod((*GorpController).Rollback, revel.FINALLY) }
func init() { revel.InterceptMethod((*Transactional).Begin, revel.BEFORE) revel.InterceptMethod((*Transactional).Commit, revel.AFTER) revel.InterceptMethod((*Transactional).Rollback, revel.FINALLY) }