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

Channel deletion #1444

Merged
merged 37 commits into from
Apr 26, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
a00bb4f
Add desktop component
siepra Apr 12, 2023
26adf1d
Add basic backend endpoint for deleting channel
vinkabuki Apr 12, 2023
4425e57
Context menu component
siepra Apr 13, 2023
e5d7fcb
Merge branch 'feature/delete-channel' of github.com:TryQuiet/quiet in…
siepra Apr 13, 2023
6ed91bd
Complete frontend part
siepra Apr 14, 2023
6a556b9
Add tests for frontend components
siepra Apr 14, 2023
74d1387
Add sagas frame for deleting channel
vinkabuki Apr 18, 2023
554a180
Add basic access controller for channels
vinkabuki Apr 18, 2023
6afe889
basic removal in saga
Kacper-RF Apr 19, 2023
361574c
fix deleting channel in storage
vinkabuki Apr 19, 2023
b795e1a
Delete channel on replication
vinkabuki Apr 19, 2023
28a00d6
Remove from channelStatus, channelSubscription entities and remove me…
Kacper-RF Apr 19, 2023
8a49566
fix deleting right channels
vinkabuki Apr 19, 2023
230ce72
basic handling of removing general channel
Kacper-RF Apr 20, 2023
677fe8d
general recreation - modal with redux
Kacper-RF Apr 20, 2023
f395208
basic notification about channel deletion
Kacper-RF Apr 20, 2023
c4cee89
Include ownerCert in registrar response
vinkabuki Apr 20, 2023
f65d885
Merge branch 'feature/delete-channel' of github.com:TryQuiet/quiet in…
vinkabuki Apr 20, 2023
a79378e
add owner certificate to redux, owner nickname selector, nickname in …
Kacper-RF Apr 20, 2023
30d4f53
add test for ownerNickname selector
Kacper-RF Apr 21, 2023
4574931
add deletedChannel saga test
Kacper-RF Apr 21, 2023
3514cc5
backwards compatibility ,add selector with oldest certificate, add te…
Kacper-RF Apr 21, 2023
c4be0cf
fix deletion info
Kacper-RF Apr 24, 2023
da372dd
Merge branch 'develop' into feature/delete-channel
siepra Apr 24, 2023
75cc94f
Feature/channel deletion mobile (#1480)
siepra Apr 24, 2023
f90d619
fix saga deletion message info, add e2e channel deletion test, optimi…
Kacper-RF Apr 25, 2023
8d8980c
merge
Kacper-RF Apr 25, 2023
88ab9e0
fix selectors
Kacper-RF Apr 25, 2023
652a1cc
extend deletion saga test
Kacper-RF Apr 25, 2023
fe11291
fix snapshot
Kacper-RF Apr 25, 2023
2e40ae6
Backend delete channels, not removing ipfs blocks and access controll…
vinkabuki Apr 26, 2023
44510ad
linter
vinkabuki Apr 26, 2023
9918972
Add backend unit test for deleting channel
vinkabuki Apr 26, 2023
9fc5a37
add channelList selector for e2e, and check channel list in test
Kacper-RF Apr 26, 2023
ec7b89c
Merge branch 'feature/delete-channel' of github.com:TryQuiet/quiet in…
Kacper-RF Apr 26, 2023
a8c822f
CR fixes
Kacper-RF Apr 26, 2023
f6947c1
add sleep
Kacper-RF Apr 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
13 changes: 3 additions & 10 deletions .github/workflows/e2e-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,27 +49,20 @@ jobs:
- name: Run smoke test
uses: nick-fields/retry@v2
with:
timeout_minutes: 25
timeout_minutes: 15
max_attempts: 3
command: cd packages/e2e-tests && npm run test smoke.crossplatform.test.ts

- name: Run newUser test - Includes 2 separate application clients
uses: nick-fields/retry@v2
with:
timeout_minutes: 35
timeout_minutes: 25
max_attempts: 3
command: cd packages/e2e-tests && npm run test newUser.crossplatform.test.ts

- name: Run invitation link test - Includes 2 separate application clients
uses: nick-fields/retry@v2
with:
timeout_minutes: 35
timeout_minutes: 25
max_attempts: 3
command: cd packages/e2e-tests && npm run test invitationLink.crossplatform.test.ts

- name: Run leave community test
uses: nick-fields/retry@v2
with:
timeout_minutes: 40
max_attempts: 3
command: cd packages/e2e-tests && npm run test leaveCommunity.crossplatform.test.ts
13 changes: 3 additions & 10 deletions .github/workflows/e2e-mac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,27 +50,20 @@ jobs:
- name: Run smoke test
uses: nick-fields/retry@v2
with:
timeout_minutes: 25
timeout_minutes: 15
max_attempts: 3
command: cd packages/e2e-tests && npm run test smoke.crossplatform.test.ts

- name: Run newUser test - Includes 2 separate application clients
uses: nick-fields/retry@v2
with:
timeout_minutes: 35
timeout_minutes: 25
max_attempts: 3
command: cd packages/e2e-tests && npm run test newUser.crossplatform.test.ts

- name: Run invitation link test - Includes 2 separate application clients
uses: nick-fields/retry@v2
with:
timeout_minutes: 35
timeout_minutes: 25
max_attempts: 3
command: cd packages/e2e-tests && npm run test invitationLink.crossplatform.test.ts

- name: Run leave community test
uses: nick-fields/retry@v2
with:
timeout_minutes: 40
max_attempts: 3
command: cd packages/e2e-tests && npm run test leaveCommunity.crossplatform.test.ts
2 changes: 1 addition & 1 deletion .github/workflows/e2e-win.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ jobs:
- name: Run smoke test
uses: nick-fields/retry@v2
with:
timeout_minutes: 25
timeout_minutes: 15
max_attempts: 3
shell: bash
command: cd packages/e2e-tests && npm run test smoke.crossplatform.test.ts
Loading