Prototyped the barcode idea; Added a basic production system.

This commit is contained in:
Wynne Crisman
2019-10-07 15:51:50 -07:00
parent 8211da6b39
commit 2e57558ef4
50 changed files with 8949 additions and 782 deletions

View File

@@ -126,4 +126,11 @@ if(Meteor.isServer) {
});
}
//Allows the client to do DB interaction without calling server side methods, while still retaining control over whether the user can make changes.
Venues.allow({
insert: function() {return false;},
update: function() {return false;},
remove: function() {return false;}
});
export default Venues;