Rocket.Chat.Apps-engine
Rocket.Chat.Apps-engine copied to clipboard
The Rocket.Chat Apps engine and definitions.
## What is it about? The [gulpfile.js](https://github.com/RocketChat/Rocket.Chat.Apps-engine/blob/alpha/gulpfile.js) in the project root can be written in typescript. ## How do you plan to do it? Gulp supports tranpilation as seen here...
The code returns IRoom instance which is missing the creator information. ``` let myRoom = read.getRoomReader().getDirectByUsernames(usernames); console.log("Room creator:"+ (directMessageRoom as IRoom).creator); //undefined ``` **Version of Rocket.Chat Server: 3.8.0-develop**
@graywolf336 commented on [Wed Apr 11 2018](https://github.com/RocketChat/Rocket.Chat.Apps-ts-definition/issues/34) Add documentation which states that storing items in memory inside of the App is not recommended at all because a Rocket.Chat server can...
The right hand side panel is the place in Rocket.Chat where additional information for the context of the current conversation are being displayed (e. g. who are the current members,...
It would be useful to have some capability for running code in the client-side with local storage and external request options. The first use case that comes to mind is...
Currently there are only two ways to query/request data from the persistent storage. First is via the id of the stored object and the second is if the data was...
An Application needs the ability to schedule a task that runs at a configurable interval or at a specific time. This can be useful for several instances, such as a...
As this project gets worked on more and more, sometimes being able to step through and debug the code would be beyond useful. However, due to the project setup the...
The age old question is being asked already, how can we improve the performance of the entire Apps framework? Sure the work being done on making everything "async" and using...