Reputation: 561
After restructuring my Solution/Project files, converting my login listener out of required.js and into a module (setLoginManager), and ensuring that API changes were addressed ... I am getting the following error showing up at the browser level when the initial login page is being displayed.
Would appreciate any guidance ... appears to be a WAF related issue not related to my application>
Upvotes: 0
Views: 84
Reputation: 478
Here is your error. You do not have describe
permission for the YtdCatReport
dataclass.
In v1
, when you have read
permission on a dataclass, it gets automatically the describe
permission. It is fixed in v2
version. Now you have to explicitly set both permissions.
Add describe
permission on the YtdCatReport
dataclass as you did for read
.
Upvotes: 0