Task lists WIP

This commit is contained in:
John Livingston
2024-04-30 18:30:44 +02:00
parent ca026c2e10
commit 22561b4daa
13 changed files with 205 additions and 10 deletions

View File

@ -0,0 +1,15 @@
import { Model } from '@converse/skeletor/src/model.js'
/**
* A chat room task.
* @class
* @namespace _converse.ChatRoomTask
* @memberof _converse
*/
class ChatRoomTask extends Model {
idAttribute = 'id'
}
export {
ChatRoomTask
}