UNPKG

strapi-plugin-testing

Version:
9 lines (7 loc) 240 B
const getAuthenticatedRole = async (strapiInstance) => { const result = await strapiInstance .query("role", "users-permissions") .findOne({ type: "authenticated" }); return result; }; module.exports = { getAuthenticatedRole };