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

Configurable Session timeout for Community #2186

Merged
merged 35 commits into from
Oct 16, 2024
Merged
Show file tree
Hide file tree
Changes from 32 commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
ac48132
completed session timeout for Admin: component to change timeout and …
JordanCampbell1 Aug 16, 2024
39fa76d
updated test files and made adjustments based on github
JordanCampbell1 Aug 17, 2024
b1f4251
Merge branch 'develop' of https://github.com/PalisadoesFoundation/tal…
JordanCampbell1 Aug 20, 2024
ae0d10d
update based on github suggestion
JordanCampbell1 Aug 21, 2024
398d995
Merge branch 'develop' of https://github.com/PalisadoesFoundation/tal…
JordanCampbell1 Aug 21, 2024
fbc71ef
Merge branch 'develop' of https://github.com/PalisadoesFoundation/tal…
JordanCampbell1 Aug 22, 2024
539d0cc
added comments
JordanCampbell1 Aug 22, 2024
471eaa1
Merge branch 'develop' of https://github.com/PalisadoesFoundation/tal…
JordanCampbell1 Aug 24, 2024
c05fcc5
test updates
JordanCampbell1 Aug 25, 2024
6e5f8c2
Merge branch 'session-timeout' of https://github.com/JordanCampbell1/…
JordanCampbell1 Aug 25, 2024
2e426e0
made enhancements to session management
JordanCampbell1 Aug 27, 2024
63f7b50
fixed tests for session
JordanCampbell1 Aug 27, 2024
661d6e6
final adjustments for tests and new feature of session management
JordanCampbell1 Sep 3, 2024
9289ee7
Merge branch 'develop' of https://github.com/PalisadoesFoundation/tal…
JordanCampbell1 Sep 3, 2024
99283cb
merge with updates from another branch
JordanCampbell1 Sep 7, 2024
5c2f9ee
updated some tests
JordanCampbell1 Sep 12, 2024
ec9c20c
adjusted tests again
JordanCampbell1 Sep 12, 2024
8f24f18
moved version back to 16.0.0
JordanCampbell1 Sep 12, 2024
03cbbfe
Merge branch 'develop' of https://github.com/PalisadoesFoundation/tal…
JordanCampbell1 Sep 12, 2024
5701872
Merge branch 'develop' of https://github.com/PalisadoesFoundation/tal…
JordanCampbell1 Sep 15, 2024
0f89dc2
Merge branch 'develop' of https://github.com/PalisadoesFoundation/tal…
JordanCampbell1 Sep 19, 2024
f0db438
fixed lint issues from previous merge
JordanCampbell1 Sep 20, 2024
c99b9c4
Merge branch 'session-timeout' of https://github.com/JordanCampbell1/…
JordanCampbell1 Sep 23, 2024
0c13a24
added packages
JordanCampbell1 Sep 23, 2024
bf91170
fixed svg lint issues and onlclick lint issue
JordanCampbell1 Sep 29, 2024
e624e67
Merge branch 'develop' of https://github.com/PalisadoesFoundation/tal…
JordanCampbell1 Sep 29, 2024
612010d
modified packages due to linting errors
JordanCampbell1 Sep 30, 2024
6d96ae2
fixed package mismatch issues
JordanCampbell1 Sep 30, 2024
0b4ea77
Merge branch 'develop' of https://github.com/PalisadoesFoundation/tal…
JordanCampbell1 Oct 10, 2024
a21a99d
Merge branch 'develop' of https://github.com/PalisadoesFoundation/tal…
JordanCampbell1 Oct 13, 2024
7d9ca3c
Merge branch 'develop' of https://github.com/PalisadoesFoundation/tal…
JordanCampbell1 Oct 13, 2024
635d36e
fixing schema issues
JordanCampbell1 Oct 14, 2024
a19994a
Merge branch 'develop' of https://github.com/PalisadoesFoundation/tal…
JordanCampbell1 Oct 14, 2024
c15b338
updated mocks for updated create mutation of action item catergory
JordanCampbell1 Oct 14, 2024
c5ccf4e
Merge branch 'develop' of https://github.com/PalisadoesFoundation/tal…
JordanCampbell1 Oct 16, 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
4 changes: 3 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,9 @@
"@typescript-eslint/no-non-null-asserted-optional-chain": "error",
"@typescript-eslint/no-non-null-assertion": "error",
"@typescript-eslint/no-var-requires": "error",
"@typescript-eslint/ban-types": "error",
"@typescript-eslint/no-unsafe-function-type": "error",
"@typescript-eslint/no-wrapper-object-types": "error",
"@typescript-eslint/no-empty-object-type": "error",
"@typescript-eslint/no-duplicate-enum-values": "error",
"@typescript-eslint/array-type": "error",
"@typescript-eslint/consistent-type-assertions": "error",
Expand Down
Loading