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

Generating password #315

Closed
wants to merge 31 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
8dd2954
merge
Reshex Aug 15, 2024
5d65319
Merge branch 'dev' into Bar
Reshex Aug 18, 2024
a6621dc
Merge remote-tracking branch 'upstream/dev' into Bar
Reshex Aug 25, 2024
7bc37f9
Merge remote-tracking branch 'upstream/dev' into Bar
Reshex Aug 25, 2024
7248337
updated delib-npm
Reshex Aug 25, 2024
337c95e
pushing changes
Reshex Aug 27, 2024
09fb572
Completed Password functionality for statement
Reshex Sep 4, 2024
a746f69
Merge remote-tracking branch 'upstream/dev' into generating-password
Reshex Sep 4, 2024
58dd2b4
Fixed unauthorized page redirection via changing the useIsAuthorized …
Reshex Sep 8, 2024
32335cf
Merge remote-tracking branch 'upstream/dev' into generating-password
Reshex Sep 8, 2024
74b5898
fixed bug that unsub user is a member, fixed little logics
Reshex Sep 11, 2024
399d623
Merge remote-tracking branch 'upstream/dev' into generating-password
Reshex Sep 15, 2024
68f01fe
merge issue fix
Reshex Sep 15, 2024
5af323e
merge
Reshex Sep 22, 2024
c9106e9
Merge remote-tracking branch 'upstream/dev' into generating-password
Reshex Sep 22, 2024
f44a63a
Update package-lock.json
Reshex Sep 22, 2024
b9ce7db
merge and bug tests
Reshex Sep 22, 2024
82126b7
Merge remote-tracking branch 'upstream/dev' into generating-password
Reshex Sep 23, 2024
8566c69
Merge remote-tracking branch 'upstream/dev' into generating-password
Reshex Sep 23, 2024
f24a237
merge bug fixes
Reshex Sep 23, 2024
0600014
env
Reshex Oct 1, 2024
b8450d5
Merge branch 'dev' into generating-password
Reshex Oct 1, 2024
4b7460d
merge
Reshex Oct 1, 2024
0470396
getSubscription mod
Reshex Oct 1, 2024
664564b
authHooks mod
Reshex Oct 1, 2024
85291a6
state bottom mod
Reshex Oct 1, 2024
df146bb
homeheader mod
Reshex Oct 1, 2024
2463e65
helpers mod
Reshex Oct 1, 2024
5026e1c
auth mod
Reshex Oct 1, 2024
8340f37
title fix
Reshex Oct 3, 2024
196bdf1
unauthorized page bug fixed
Reshex Oct 3, 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
18 changes: 9 additions & 9 deletions .env.development
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
VITE_APP_ENV=development
VITE_FIREBASE_API_KEY_DEV=AIzaSyBEumZUTCL3Jc9pt7_CjiSVTxmz9aMqSvo
VITE_FIREBASE_AUTH_DOMAIN_DEV=localhost:5173
VITE_FIREBASE_DATABASE_URL_DEV=https://synthesistalyaron.firebaseio.com
VITE_FIREBASE_PROJECT_ID_DEV=synthesistalyaron
VITE_FIREBASE_STORAGE_BUCKET_DEV=synthesistalyaron.appspot.com
VITE_FIREBASE_MESSAGING_SENDER_ID_DEV=799655218679
VITE_FIREBASE_APP_ID_DEV=1:799655218679:web:1409dd5e3b4154ecb9b2f2
VITE_FIREBASE_MEASUREMENT_ID_DEV=G-XSGFFBXM9X
VITE_FIREBASE_VAPID_KEY_DEV=BDPJqTToQGWTXonXbOHfh7EMC4VtkTU69jzFCAv3yo-jDs3BtDxC1tVSjxRrAabetOl7WNuc5YnyS26iYQOMdSQ
VITE_FIREBASE_API_KEY_DEV=AIzaSyD-117AZU4nEdFo1Z2XRvVZO-_Dj8QQCf4
VITE_FIREBASE_AUTH_DOMAIN_DEV=delib-v3-dev.firebaseapp.com
VITE_FIREBASE_DATABASE_URL_DEV=https://delib-v3-dev.firebaseio.com
VITE_FIREBASE_PROJECT_ID_DEV=delib-v3-dev
VITE_FIREBASE_STORAGE_BUCKET_DEV=delib-v3-dev.appspot.com
VITE_FIREBASE_MESSAGING_SENDER_ID_DEV=78129543863
VITE_FIREBASE_APP_ID_DEV=1:78129543863:web:1e4884c2e1f88b0810eb32
VITE_FIREBASE_MEASUREMENT_ID_DEV=G-TFEFHKEX4D
VITE_FIREBASE_VAPID_KEY_DEV=BH5HoVPWsJy58r_Qyr8uikZB3qgQq7LKG3vqqzYGcBvwnO_VHC3_F9n4vMJIytHjshn0UGIvKFVVSftrdYGhPhM
71 changes: 1 addition & 70 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,5 @@
{
"plugins": [
"import",
"react",
"@typescript-eslint",
"prettier",
"sonarjs",
"jsx-a11y"
],
"plugins": ["import", "react", "@typescript-eslint", "prettier", "sonarjs"],
"extends": ["plugin:@typescript-eslint/recommended", "prettier"],
"rules": {
"react/display-name": "error",
Expand All @@ -18,68 +11,6 @@
"@typescript-eslint/no-non-null-assertion": "off",
// add new line above comment
"no-duplicate-case": "error",
"jsx-a11y/interactive-supports-focus": [
"error",
{
"tabbable": [
"button",
"checkbox",
"link",
"searchbox",
"spinbutton",
"switch",
"textbox"
]
}
],
"jsx-a11y/role-has-required-aria-props": "warn",
"jsx-a11y/alt-text": [
2,
{
"elements": ["img"],
"img": ["Image"]
}
],
"jsx-a11y/no-static-element-interactions": [
"error",
{
"handlers": [
"onClick",
"onMouseDown",
"onMouseUp",
"onKeyPress",
"onKeyDown",
"onKeyUp"
],
"allowExpressionValues": true
}
],
"jsx-a11y/control-has-associated-label": [ 1, {
"labelAttributes": ["label"],
"controlComponents": ["CustomButton"],
"ignoreElements": [
"audio",
"canvas",
"embed",
"input",
"textarea",
"tr",
"video"
],
"ignoreRoles": [
"grid",
"listbox",
"menu",
"menubar",
"radiogroup",
"row",
"tablist",
"toolbar",
"tree",
"treegrid"
],
"depth": 3
}],
"lines-around-comment": [
"error",
{
Expand Down
4 changes: 4 additions & 0 deletions firestore.rules
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
service cloud.firestore {
match /databases/{database}/documents {

match /statementsPasswords/{document=**} {
allow read, write: if request.auth != null;
}

match /awaitingUsers/{document=**} {
allow read, write: if request.auth != null;
Expand Down
Loading
Loading