Prototyped the barcode idea; Added a basic production system.
This commit is contained in:
@@ -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;
|
||||
Reference in New Issue
Block a user