hpawe01
hpawe01
I cannot reproduce it with the following commands: - `theme download config/settings_data.json --live --no-ignore -v` - `theme download config/settings_data.json --no-ignore -v` - `theme download config/settings_data.json -v` Every time my outdated...
If you add images to the `ignore_files` part of your `config.yml` (like `- /\.(png|ttf|jpg|svg)$/`), no images should be deleted on `theme deploy`. And if you don't add this, then those...
Any news on this?
Did you provide the correct Websocket url? If you for example have the socket route `$socket->route('/example', new ExampleSocket, ['*']);` you need create your socket with `ws://localhost/example`.
@stringhuang: Sometimes pushing into an existing array behaves weird. Have you tried setting the array in your `openPreview` method like this? ```typescript this.galleryImagesList = [{ // image1 }, { //...
I don't think, that you will get a detailed step-by-step instruction here. You can create a fork of this open source project and play with the code. I have the...
Yes, if you want to indicate, that an attribute in your model is a relationship, you should either use the `@BelongsTo` or `@HasMany` decorator (depending on the relationship). For OneToOne...
This seems to be an incorrect statement in the README, because the only methods that can be overwritten are - `getDirtyAttributes` - `toQueryString` The override mechanism is described [here](https://github.com/ghidoz/angular2-jsonapi#datastore-config) and...
@dustinblanchard can you check if #263 fixed this issue? And if no, if probably #277 will fix it?
I don't know if this serves a purpose and without this line the tests are still running through. But I think this would be a breaking change, at least for...