Nomad is an open-source application that helps to retrieve Salesforce standards and custom objects and fields permission based on profiles and permission sets, Facilitate with sandbox, and production-ready.
Visit - https://nomad24.herokuapp.com/
- Easy to login Sandbox or Production via outh2.0
- Retrieve custom and standard FLS and OLS permission
- Easy to navigate permission set and profile in Org from Nomad, just need to click on permission name
Note: Special Properties for Field Permissions. Field Permissions won't show system fields that Salesforce sets access, you will get No Records.
i.e. Name, Id, CreatedById,CreatedDate
- Frontend is build on React, which is open source JS library for building user interfaces.
-
Backend build on express.js
- User Login - Using JSForce OAuth2 with connected app
- Query - Using SOQL to get the records
var records = []; conn.query("SELECT Id, Name FROM Account", function(err, result) { if (err) { return console.error(err); } console.log("total : " + result.totalSize); console.log("fetched : " + result.records.length); });
Create Pull Request to master
with your feature banch, I will review and merge the changes.