Draft: Revert "feat: Private Groups + Load-Templates"

This commit is contained in:
Josepablo Cruz Baas
2026-03-31 22:06:21 +00:00
parent 14a8a22880
commit f79329e714
18 changed files with 55 additions and 672 deletions

View File

@@ -90,9 +90,7 @@ const schema = new Schema({
payment_term: { type: String },
terms_and_conditions: { type: String },
createdAt: { type : Date, required : true, default : () => { return Date.now(); } },
privacy: { type: Boolean, default: false }, /// Disables visibility on the directory, only enabled for private groups.
createdAt: { type : Date, required : true, default : () => { return Date.now(); } }
});
module.exports = mongoose.model( "loads", schema );