Ralf Schimmel

Results 10 comments of Ralf Schimmel

I am having the exact same problem @mattbeedle is having. The 'auth' property of the Em.Auth.AuthRequest seems to be 'undefined'. Did anyone find a workaround for this issue?

@digitalplaywright does that also work with the latest ember and ember-data? I am using the latest version of EAK.

Ok tnx @digitalplaywright. I have a complete project running in production using ember-auth, but I switched to EAK. Now ember-auth is not working, and just dropping in ember-auth-easy seems strange,...

@digitalplaywright the problem is that ember-auth (v8 or v9) is not working when used with EAK. I just can't seem to get either of the two working and am on...

In case this helps anyone, took me a while to figure out and ended up with a working configuration. Using `"@nuxtjs/auth": "^4.9.1",` `"nuxt": "2.12.2",` and `"vuex-module-decorators": "^0.16.1"` I got this...

Nice, hope @zacharygolba has some spare time soon ;-)

Your solution sounds good to me. However I think we can also achieve this using babel's `ignore` and rollup's `exclude`, using their native capabilities to achieve the desired solution prevents...

Now there still is a problem, though of another nature: Trying to send message: {"updateRecord":{"bucket":"person","primaryKey":"id","key":"@RegS2hy8mcQhRUh2mEKldmmDIydpCkR","application":"Bw","properties":[{"key":"isActor","type":"Boolean"},{"key":"isActive","type":"Boolean"},{"key":"firstName","type":"String"},{"key":"suffix","type":"String"},{"key":"surName","type":"String"},{"key":"gender","type":"String"},{"key":"birthDate","type":"Date"},{"key":"email","type":"String"},{"key":"homePhone","type":"String"},{"key":"workPhone","type":"String"},{"key":"mobilePhone","type":"String"},{"key":"username","type":"String"},{"key":"password","type":"String"}],"relations":[{"type":"toOne","isMaster":true,"bucket":"customer","primaryKey":"id","propertyName":"customer","oppositeType":"toMany","keys":"@fPWxG37t4INmJTpJXGO0f3fiC8kkNw"},{"type":"toMany","isMaster":true,"bucket":"address","primaryKey":"id","propertyName":"addresses","oppositeType":"toMany"},{"type":"toMany","isMaster":true,"bucket":"assignmentactor","primaryKey":"id","propertyName":"assignments","oppositeType":"toMany"}],"combineReturnCalls":true,"record":{"id":"@RegS2hy8mcQhRUh2mEKldmmDIydpCkR","isActor":false,"password":"","mobilePhone":"","workPhone":"","homePhone":"","email":"","gender":"","surName":"","suffix":"","firstName":"test23"},"returnData":{"requestCacheKey":"m73ZTBQK8gZA3NOidcoORqVvf5yW7H4Xi"}}} 30 Jun 08:43:21 - ThothServer: Caught an exception which was not caught elsewhere: TypeError: Object...

Fix: ``` javascript if (relation.keys) { if (!relation.keys.constructor.toString().indexOf("Array") == -1) { var relationKeys = relation.keys.copy(); } else { var relationKeys = [relation.keys]; } } else { var relationKeys = [];...

Well had to hassle a bit but I created a pull request :-) Now i have a clean setup so I can do this more often (for Thoth and Thoth-SC)