(options, chatID)
| 41 | } |
| 42 | |
| 43 | constructor (options, chatID) { |
| 44 | super(options) |
| 45 | this.deleteChatMessage = this.deleteChatMessage.bind(this) |
| 46 | this.chatID = chatID |
| 47 | this.chat = new ChatMessage({ _id: this.chatID }) |
| 48 | this.chat.saveBackups = true |
| 49 | this.supermodel.loadModel(this.chat) |
| 50 | } |
| 51 | |
| 52 | onLoaded () { |
| 53 | super.onLoaded() |
nothing calls this directly
no outgoing calls
no test coverage detected