Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
vNext
----------
- [MINOR] Add client scenario to JwtRequestBody (#2755)
- [PATCH] Fix Switch browser back stack (#2750)
- [MINOR] Move ests telemetry behind feature flag (#2742)
- [MINOR] Update Broker ATS flow for Resource Account (#2704)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ public static class ClaimNames {
public static final String JWE_CRYPTO = "jwe_crypto";
public static final String SESSION_KEY_CRYPTO = "session_key_crypto";
public static final String PURPOSE = "purpose";
public static final String CLIENT_SCENARIO = "client_scenario";
}

@SerializedName(ClaimNames.REFRESH_TOKEN)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,9 @@ public final class JwtRequestBody extends AbstractJwtRequest {
@SerializedName(ClaimNames.PURPOSE)
private String mPurpose;

@SerializedName(ClaimNames.CLIENT_SCENARIO)
private String mClientScenario;
Comment thread
rpdome marked this conversation as resolved.

public void setIat(final long iat) {
mIat = String.valueOf(iat);
}
Expand Down
Loading