You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
require"../utilities/*"modulePlaceOS::ApiabstractclassApplication < ActionController::BasemacroinheritedLog= ::PlaceOS::Api::Log.for(self)end# Customise the request body parseradd_parser("application/json")do |klass,body_io|
json=body_io.gets_to_endobject=klass.from_json(json)# TODO:: try to improve this double parsingifobject.is_a?(::PlaceOS::Model::ModelBase)object=object.class.new# we clear the changes information so we can track what was assigned from the JSONobject.clear_changes_informationobject.assign_attributes_from_json(json)endobjectend# Helpers for controller responsesincludeUtils::Responders
The text was updated successfully, but these errors were encountered:
rest-api/src/placeos-rest-api/controllers/application.cr
Line 19 in 7daf21d
The text was updated successfully, but these errors were encountered: