Skip to content

Commit 2e2d1f2

Browse files
authored
Merge pull request #325 from AzureAD/sagonzal/fixSpelling
Fix spelling mistake in Prompt.java
2 parents 7d94eed + f0eec25 commit 2e2d1f2

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

src/main/java/com/microsoft/aad/msal4j/Prompt.java

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,16 @@ public enum Prompt {
2727

2828
/**
2929
* An administrator should be prompted to consent on behalf of all users in their organization.
30+
*
31+
* Deprecated, instead use Prompt.ADMIN_CONSENT
3032
*/
31-
ADMING_CONSENT ("admin_consent");
33+
@Deprecated
34+
ADMING_CONSENT ("admin_consent"),
35+
36+
/**
37+
* An administrator should be prompted to consent on behalf of all users in their organization.
38+
*/
39+
ADMIN_CONSENT ("admin_consent");
3240

3341
private String prompt;
3442

0 commit comments

Comments
 (0)