We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7d94eed + f0eec25 commit 2e2d1f2Copy full SHA for 2e2d1f2
src/main/java/com/microsoft/aad/msal4j/Prompt.java
@@ -27,8 +27,16 @@ public enum Prompt {
27
28
/**
29
* An administrator should be prompted to consent on behalf of all users in their organization.
30
+ *
31
+ * Deprecated, instead use Prompt.ADMIN_CONSENT
32
*/
- 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");
40
41
private String prompt;
42
0 commit comments