I have the following work so that only the people in the approver list can make the modification approval and others only see the created project.
such as this in the OnStart of my app:
Set(
varUserProfile,
Office365Users.MyProfile()
);
If(
varUserProfile.Mail = "XXX@xxx.com",
Set(
varAdminPermission,
true
)
);
Edit Icon Visible :
varAdminPermission
But I and everyone else can't see the modify button, I don't know what is wrong.
My goal is that only the Modify button is visible to me.
thanks!