mirror of
https://gitlab.com/bmcgonag/get_my.git
synced 2026-03-27 00:08:49 +00:00
Fixing clean Up and added option to show which products arent used in a list
This commit is contained in:
parent
c6c5951d16
commit
680f7c614d
6 changed files with 71 additions and 10 deletions
|
|
@ -96,6 +96,14 @@ Meteor.publish("myListItems", function(listId) {
|
|||
}
|
||||
});
|
||||
|
||||
Meteor.publish("allListItems", function() {
|
||||
try {
|
||||
return ListItems.find({});
|
||||
} catch (error) {
|
||||
console.log(" ERROR pulling all list items.");
|
||||
}
|
||||
});
|
||||
|
||||
Meteor.publish("myStoreListItems", function(listId) {
|
||||
try {
|
||||
let stores = Store.find({});
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue