Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updates to Manager #174

Merged
merged 70 commits into from
Aug 26, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
70 commits
Select commit Hold shift + click to select a range
7b73e2c
Updated manager logic
COChara Jul 31, 2023
4592451
Updated manager logic
COChara Jul 31, 2023
85e9ac0
Chnages to output to handle more 2 or more shifts
COChara Jul 31, 2023
361f9c8
Chnages to output to handle more 2 or more shifts
COChara Jul 31, 2023
3e65a63
Implemented shift conversion for output
COChara Jul 31, 2023
dd43cb9
Implemented shift conversion for output
COChara Jul 31, 2023
56cb932
Push for updated device manager, change includes modifer keys and rev…
COChara Aug 1, 2023
391522c
Push for updated device manager, change includes modifer keys and rev…
COChara Aug 1, 2023
4f906cf
Clean Push
COChara Aug 1, 2023
d4b161d
Handle Uppercases and esclamation points
COChara Aug 2, 2023
4cdd55c
Handle Uppercases and esclamation points
COChara Aug 2, 2023
bff484a
Fix to One and Lite logic for manager
COChara Aug 2, 2023
c551f34
Updates to the Store to ensure training test data is saved
COChara Aug 2, 2023
8df0c33
Shift issue fix for manager
COChara Aug 3, 2023
ff28e31
Shift issue fix for manager
COChara Aug 3, 2023
ab802c8
Merge branch 'latest_branch' of https://github.com/COChara/dot-io int…
COChara Aug 3, 2023
f953380
Merged changes from git
COChara Aug 3, 2023
d6f05d7
Merged changes from git
COChara Aug 3, 2023
45bce8b
Update to import key maps read in
COChara Aug 6, 2023
0c0507f
Update to import key maps read in
COChara Aug 6, 2023
b4859a5
Update to import key maps read in
COChara Aug 6, 2023
ee4e556
Service worker check
COChara Aug 8, 2023
bfd6780
Service worker files
COChara Aug 8, 2023
5085fc9
Service worker files
COChara Aug 8, 2023
e3d6944
Service worker files
COChara Aug 8, 2023
803d503
Service worker files
COChara Aug 8, 2023
5a4cef3
Service worker files
COChara Aug 8, 2023
95edff0
Service worker files
COChara Aug 8, 2023
634811c
Service worker files using src/
COChara Aug 8, 2023
e5942a9
Service worker files using /
COChara Aug 8, 2023
732d943
Service worker files using #/
COChara Aug 8, 2023
63ea170
Service worker files using using .js file endings
COChara Aug 8, 2023
288a04c
Added webpack config file
COChara Aug 8, 2023
f4eef12
Added webpack config file
COChara Aug 8, 2023
d3342cc
Added webpack config file
COChara Aug 8, 2023
9d5314f
Added webpack config file
COChara Aug 8, 2023
6eddfee
Remove react-error-overlay
COChara Aug 8, 2023
827bff2
Remove react-error-overlay
COChara Aug 8, 2023
e9752fd
Remove react-error-overlay
COChara Aug 8, 2023
4b0005a
Remove react-error-overlay
COChara Aug 8, 2023
d2595cd
Update the process.env variables to import.meta.env
COChara Aug 8, 2023
8346d3b
Update the process.env variables to import.meta.env
COChara Aug 8, 2023
74a4d47
trying more fixes for service
COChara Aug 8, 2023
5c88cfa
trying more fixes for service
COChara Aug 8, 2023
7f8fb32
trying more fixes for service
COChara Aug 8, 2023
53fc7f8
trying more fixes for service
COChara Aug 8, 2023
92f4a99
trying more fixes for service
COChara Aug 8, 2023
3e13c90
webworker work
COChara Aug 8, 2023
5dff0e9
webworker work
COChara Aug 8, 2023
5f4c44b
webworker work
COChara Aug 8, 2023
93078b5
webworker work
COChara Aug 8, 2023
3f9812a
webworker work
COChara Aug 8, 2023
372f990
updating the url call method in service worker
COChara Aug 8, 2023
7c31ba7
Update for the package file
COChara Aug 8, 2023
4926e2d
Update for the package file
COChara Aug 8, 2023
1503b04
Update for the package file
COChara Aug 8, 2023
4091c85
Update for the package file
COChara Aug 8, 2023
e5cbdba
Updated download.tsx
COChara Aug 9, 2023
0d532ea
Updated manager.tsx
COChara Aug 15, 2023
93a3e73
Updated compression
COChara Aug 20, 2023
11cced9
Updated compression
COChara Aug 20, 2023
6e3517b
Timeout
COChara Aug 21, 2023
9973012
async timeout call
COChara Aug 22, 2023
e00a758
1/10 second delay
COChara Aug 22, 2023
28622c8
update
COChara Aug 22, 2023
881270b
update
COChara Aug 22, 2023
3461f00
update
COChara Aug 22, 2023
1ba0493
see response string from device
COChara Aug 23, 2023
7edda74
see response string from device
COChara Aug 23, 2023
928ef74
Changes to manager
COChara Aug 26, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,4 @@ coverage
ci-cd/.env
.env
test_run_output.txt
backend
31 changes: 31 additions & 0 deletions backend/models/user.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
import mongoose from 'mongoose';

const userSchema = new mongoose.Schema ({
username: {
type: String,
unique: true,
required: true
},
password: {
type: String,
required: true
},
email: {
type: String,
unique: true,
required: true
},
firstName: {
type: String,
required: true
},
lastName: {
type: String,
required: true
},

})

const userModel = mongoose.model('users',userSchema);

export default userModel
16 changes: 16 additions & 0 deletions backend/models/verificationCode.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
import mongoose from 'mongoose';

const otpSchema = new mongoose.Schema ({
userId: {
type: mongoose.Types.ObjectId,
ref: "users"
},
otp: {
type: String,
required: true,
}
})

const otpModel= mongoose.model('otp',otpSchema);

export default otpModel
Loading