Feedback Aide API Methods
save()
Saves the current feedback session to the Learnosity servers.
You would want to use this to manually save the current feedback session when the user interacts with your application, for example.
Examples
// Using the feedback session instance
const savedResult = await feedbackSession.save();
// Using the session UI instance
const savedResult = await sessionUI.save();
Arguments
-
options object
Additional options for saving the feedback session.
The following properties are supported.
-
ready_for_review boolean
Indicates whether the feedback session is ready for review or not.
Feedback sessions which are not ready will not be available when the session is loaded in the
reviewstate.When set to
true, it will mark the feedback session as ready for review.
-
Return value
Type Promise
Related articles
- The
isReadyForReview()method, which indicates whether the feedback session is ready for review.