add score page + update score after regiter imei

This commit is contained in:
morteza-mortezai
2025-12-01 20:18:15 +03:30
parent 7b501107cf
commit 176998476d
7 changed files with 234 additions and 104 deletions
+10
View File
@@ -0,0 +1,10 @@
const mongoose = require('mongoose')
const SettingsSchema = mongoose.Schema({
title: String,
amount: Number,
createdAt: { type: Date, default: Date.now },
})
module.exports = mongoose.model('Settings', SettingsSchema)