Updated Login and User Management with new materialize and controls

This commit is contained in:
Brian McGonagill 2024-07-25 09:56:37 -05:00
parent 81559683eb
commit 1d7ecc3efa
13 changed files with 280 additions and 84 deletions

View file

@ -110,4 +110,12 @@ Meteor.publish("myTasks", function() {
} catch (error) {
console.log(" ERROR pulling the task items: " + error);
}
});
});
Meteor.publish("rolesAvailable", function() {
try {
return Meteor.roles.find({});
} catch (error) {
console.log(" ERROR publishing roles: " + error);
}
})