parse-community / Parse-SDK-Flutter

The Dart/Flutter SDK for Parse Platform

Home Page:https://parseplatform.org

Repository from Github https://github.comparse-community/Parse-SDK-FlutterRepository from Github https://github.comparse-community/Parse-SDK-Flutter

ParseUser save method takes context as parameter but it is not propagated to Object super.save

valerycolong opened this issue · comments

New Issue Checklist

Issue Description

ParseUser exposes a save method that takes a context but for now it seems the context is not being used.

Steps to reproduce

Call
await ParseUser.createUser(
username, // Username
password // Password
email
).save(context);

Actual Outcome

I do not observe the context parameter from the backend.

Expected Outcome

Context should be passed to request.context in the backend.

Environment

Parse Flutter SDK

  • SDK version: 7.0.0
  • Flutter version: 3.24.3
  • Dart version: 3.5.3
  • Operating system version: Windows 11

Server

  • Parse Server version: 7.2.0

Thanks for opening this issue!

  • 🚀 You can help us to fix this issue faster by opening a pull request with a failing test. See our Contribution Guide for how to make a pull request, or read our New Contributor's Guide if this is your first time contributing.
commented

Could you please provide a full code example including the Cloud Code that you are using to test the context?