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
Enhanced Security with RSVP Token Authentication
A new filter has been added to authenticate requests using RSVP tokens for our REST API. This allows users with a valid token to access our service without having to sign in.
Streamlining Authentication with a New Method
A new method, 'authenticate_rsvp_token', has been introduced. This method checks the RSVP token in the requests. If a valid token is received, the usual code (nonce) verification is skipped. This speeds up the processing time for users with valid tokens.
Improved Request Routing with RSVP Endpoint Check
A function to verify if the current request is intended for the RSVP endpoint has been implemented. This helps route user requests more efficiently, ensuring better response times.
Revamped JavaScript Request Logic
The JavaScript request process has been tweaked to make it more user-friendly. Now, users are required to provide a nonce (or a unique code) only when they do not have a valid RSVP token. This makes the request process more streamlined for users with valid tokens.
Enhanced API Call Flexibility with Fetch Request Refactor
The headers setup for fetch requests has been refactored. Now, the inclusion of the nonce in the header depends on whether an RSVP token is present or not. This makes our API calls more flexible and adaptable to different user scenarios.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description of the Change
Closes #
How to test the Change
Changelog Entry
Credits
Props @username, @username2, ...
Checklist: