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

Validate a TOTP code before saving it #1055

Merged
merged 25 commits into from
Sep 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
1eea75a
Update .gitignore to ignore .idea folder
kekonn Sep 5, 2024
a876af2
Update .gitignore to ignore .idea folder
kekonn Sep 5, 2024
670ac8e
Merge remote-tracking branch 'origin/feat/totp-validation' into feat/…
kekonn Sep 5, 2024
dc8ff70
Bump @typescript-eslint/parser from 7.17.0 to 7.18.0 in /warpgate-web
dependabot[bot] Sep 5, 2024
a573cd6
Fix project config rustflags
kekonn Sep 9, 2024
151ac5c
Cargo update
kekonn Sep 9, 2024
0552e7f
Hide local data folder
kekonn Sep 9, 2024
e85c246
Easier shortcuts in Just file
kekonn Sep 9, 2024
24d78aa
Add devbuild script (like watch without the watch)
kekonn Sep 9, 2024
dacbe04
Password and TOTP validation
kekonn Sep 9, 2024
b224031
Merge pull request #15 from kekonn/dependabot/npm_and_yarn/warpgate-w…
kekonn Sep 10, 2024
e8b208b
`yarn upgrade`
kekonn Sep 10, 2024
5d49c35
move dependency to devDependencies
kekonn Sep 10, 2024
2bc720c
Update .gitignore to ignore .idea folder
kekonn Sep 5, 2024
ac6efb6
Fix project config rustflags
kekonn Sep 9, 2024
44589fa
Cargo update
kekonn Sep 9, 2024
88fe5ac
Hide local data folder
kekonn Sep 9, 2024
11951b0
Easier shortcuts in Just file
kekonn Sep 9, 2024
e8803d2
Add devbuild script (like watch without the watch)
kekonn Sep 9, 2024
1d3f96c
Password and TOTP validation
kekonn Sep 9, 2024
f4db618
`yarn upgrade`
kekonn Sep 10, 2024
f2bee64
move dependency to devDependencies
kekonn Sep 10, 2024
cfe5c89
Merge remote-tracking branch 'origin/feat/totp-validation' into feat/…
kekonn Sep 10, 2024
6d74a53
cleanup
Eugeny Sep 10, 2024
2287ccd
Merge branch 'main' into pr/1055
Eugeny Sep 11, 2024
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
8 changes: 6 additions & 2 deletions .cargo/config.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,6 @@
[build]
rustflags = ["--cfg", "tokio_unstable"]
#[build]
#rustflags = ["--cfg", "tokio_unstable"]

# https://github.com/rust-lang/cargo/issues/5376#issuecomment-2163350032
[target.'cfg(all())']
rustflags = ["--cfg", "tokio_unstable"]
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,7 @@ config.yaml
__pycache__
.pytest_cache
dhat-heap.json

# IntelliJ based IDEs
.idea/
/.data/
Loading
Loading