generated from graasp/graasp-repo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix: typeorm fixes * fix: types in tests * fix: tests once more * fix: message body type * fix: spread messages and use type from sdk * fix: use latest immutable version * chore: fix message type * chore: bump dependencies * refactor: fix chatbox * refactor: fix i18next deps * refactor: remove useMembers hook * refactor: update mention type * refactor: fix issues * fix: do not send mentions * fix: test and fixture data --------- Co-authored-by: pyphilia <[email protected]> Release-As: v2.0.0-rc.1
- Loading branch information
Showing
26 changed files
with
1,675 additions
and
1,644 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
import { Item, ItemType } from '@graasp/sdk'; | ||
|
||
import { CURRENT_MEMBER } from './members'; | ||
|
||
export const MOCK_ITEM: Item = { | ||
id: 'some-id', | ||
name: 'my mock item', | ||
description: 'a description', | ||
path: 'some-id', | ||
settings: {}, | ||
creator: CURRENT_MEMBER, | ||
createdAt: new Date(), | ||
updatedAt: new Date(), | ||
type: ItemType.FOLDER, | ||
extra: {}, | ||
}; |
Oops, something went wrong.