Ümit Öztürk

Results 2 comments of Ümit Öztürk

after ember v3.27.0 (May 3, 2021), `registerPlugin / unregisterPlugin` was deprecated. that's the reason why you're getting this error. you can see in here: https://github.com/emberjs/ember.js/blob/master/CHANGELOG.md

It's been a long time but I guess i've found a solution for this :) ```ruby format_user = JsonApiClient::Parsers::Parser.parse( ParasutApi::Resources::SalesInvoice, OpenStruct.new(body: JSON.parse(user_data.to_json), env: {}) ) ``` according to this parser's...