This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const application = require("tns-core-modules/application"); | |
export default function (Vue) { | |
Vue.cycle = { | |
init(vm) { | |
console.log('!@# starting init in lifecycle'); | |
application.on(application.launchEvent, (args) => { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"allTasks":[ | |
{ | |
"id":74, | |
"name":"another \ud83d\udc2c\ud83d\udc0a\ud83e\udd8d\ud83e\udd92\ud83d\udc16 task", | |
"description":"Desc: \ud83e\udd80\ud83e\udd95\ud83e\udd82\ud83d\udd77", | |
"timeDiff":"2019-01-06T01:30:00+00:00", | |
"nextInstanceID":2601, | |
"responseStatus":"unknown", | |
"nextInstance":{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"allTasks":[ | |
{ | |
"id":74, | |
"name":"another \ud83d\udc2c\ud83d\udc0a\ud83e\udd8d\ud83e\udd92\ud83d\udc16 task", | |
"description":"Desc: \ud83e\udd80\ud83e\udd95\ud83e\udd82\ud83d\udd77", | |
"timeDiff":"2019-01-06T01:30:00+00:00", | |
"nextInstanceID":2601, | |
"responseStatus":"unknown", | |
"nextInstance":{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
return [ | |
/* | |
* This package comes with multi tenancy out of the box. Here you can | |
* configure the different apps that can use the webSockets server. | |
* | |
* Optionally you can disable client events so clients cannot send | |
* messages to each other via the webSockets. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace Tests\Feature\Feature; | |
use App\User; | |
use Illuminate\Support\Facades\DB; | |
use Tests\TestCase; | |
use Illuminate\Foundation\Testing\WithFaker; | |
use Illuminate\Foundation\Testing\RefreshDatabase; |