Permission requirements #124
-
|
Hi, After trying it out, and not granting admin consent to anything other than user_impersonation for the backend app registration, everything seems to work fine. The only noticable change is users are prompted to grant some access upon login. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 6 replies
-
|
Hi @DennisLundtoft, some key functionality of the UI is the ability to search AAD for users to be added as Admins. This feature requires (at least) Directory.Read.All, hence why this permission is applied to the UI App Registration when you use our deployment script. Our automation also assumes that this will be deployed as an Enterprise application, and as such granting Admin Consent affords a much smoother experience by not bothering users for permissions when they login. If you would prefer not to go this route and have users prompted for permissions then there shouldn't be any issue (that I can think of). Our deployment script will cover the "ideal" scenarios, but we also realize there are lots of customers with different wants here. We're currently working on some more detailed architectural guidance in our docs for those customers who would like to deviate a bit from the fairly ridged way the script deploys things today. I hope that answered your question, but if not I'm more than happy to go into a much detail as you'd like. Just let me know! |
Beta Was this translation helpful? Give feedback.
Hi @DennisLundtoft, some key functionality of the UI is the ability to search AAD for users to be added as Admins. This feature requires (at least) Directory.Read.All, hence why this permission is applied to the UI App Registration when you use our deployment script. Our automation also assumes that this will be deployed as an Enterprise application, and as such granting Admin Consent affords a much smoother experience by not bothering users for permissions when they login.
If you would prefer not to go this route and have users prompted for permissions then there shouldn't be any issue (that I can think of). Our deployment script will cover the "ideal" scenarios, but we also realize ther…