Manuel Rodríguez

Results 16 comments of Manuel Rodríguez

Hi @jepiqueau I was not aware of the use of TypeORM. The idea of this PR is similar to TypeORM migrations, but using only the `addUpgradeStatement(...)` method of the API...

Hi @jepiqueau Sorry for not replying sooner, it's been a busy summer. I'm going to try to prepare an app-demo for next week.

> > i thought for version 1 it would have been let result:any = await this._SQLiteService.addUpgradeStatement( "test-sqlite", upgrades[0].toVersion, upgrades[0].statements ); and for version 2 let result:any = await this._SQLiteService.addUpgradeStatement( "test-sqlite",...

Hi @jepiqueau This code will call `SQLiteConnection.addUpgradeStatement()` method from `definitions.ts` ```ts let result:any = await this._SQLiteService.addUpgradeStatement( "test-sqlite", upgrades[0].toVersion, // number upgrades[0].statements // array ); ``` **File `src/definitions.ts`, line 1076** ```ts...

> i am just trying to understand what you have done as i have to implement it in `jeep-sqlite` stencil component to have the web part of the plugin working....

> @dragermrb i just got the thing publish in 4.1.0-6 you can have a look at the implementation in [angular-sqlite-app-starter](https://github.com/jepiqueau/angular-sqlite-app-starter). Thanks for your contribution it is a lot smarter process....

Hi @matiss-zalans I have overwritten `setConfig()` method to updates the URL

Hi @adrianpaiva1 Class `Edujugon\PushNotification\Channels\FcmV1Channel` inherits from `Edujugon\PushNotification\Channels\GcmChannel`, and it already implements `buildData()`

Hi @adrianpaiva1 All these keys al valid according to documentation: https://firebase.google.com/docs/reference/fcm/rest/v1/projects.messages?hl=es#AndroidNotification

Hi @adrianpaiva1 The problem only occurs when using Laravel notifications. Since I don't use them I couldn't reproduce the problem. I need to do some work to correctly generate the...