1
0
mirror of https://github.com/mattermost/focalboard.git synced 2025-11-29 22:58:08 +02:00

Boards as persisted category (#3877)

* WIP

* WIP

* Removed unused webapp util

* Added server tests

* Lint fix

* Updating existing tests

* Updating existing tests

* Updating existing tests

* Fixing existing tests

* Fixing existing tests

* Fixing existing tests

* Added category type and tests

* updated tests

* Fixed integration test

* type fix

* removed seconds from boards name

* wip

* debugging cy test

* Fixed a bug preventing users from collapsing boards category

* Debugging cypress test

* CI

* debugging cy test

* Testing a fix

* reverting test fix

* Handled personal server

* Fixed a case for personal server

* fixed a test
This commit is contained in:
Harshil Sharma
2022-10-26 16:38:03 +05:30
committed by GitHub
parent ba792191cd
commit 8d17dd820e
27 changed files with 746 additions and 304 deletions

View File

@@ -729,7 +729,8 @@ func TestDeleteBoardsAndBlocks(t *testing.T) {
// the user is an admin of the first board
newBoard1 := &model.Board{
Type: model.BoardTypeOpen,
Type: model.BoardTypeOpen,
TeamID: "team_id_1",
}
board1, err := th.Server.App().CreateBoard(newBoard1, th.GetUser1().ID, true)
require.NoError(t, err)
@@ -737,7 +738,8 @@ func TestDeleteBoardsAndBlocks(t *testing.T) {
// but not of the second
newBoard2 := &model.Board{
Type: model.BoardTypeOpen,
Type: model.BoardTypeOpen,
TeamID: "team_id_1",
}
board2, err := th.Server.App().CreateBoard(newBoard2, th.GetUser1().ID, false)
require.NoError(t, err)