Skip to content
This repository has been archived by the owner on Jun 27, 2024. It is now read-only.

Latest commit

 

History

History
11 lines (6 loc) · 1.46 KB

File metadata and controls

11 lines (6 loc) · 1.46 KB

Extend App Capabilities

After learning how to create and deploy a basic app, you can now extend the app to add more features such as slash commands, HTTP requests, handling events, and UI interactions supported by the Apps-Engine to expand the functionality of your app to meet business requirements.

The IConfigurationExtend accessor contains methods to declare your app's configuration. It is created during app initialization. Using this, you can add new features to your app.

Here is a list of accessors that Apps-Engine supports:

AccessorDescription
apiDeclare API endpoints.
httpConfigure how your app handles HTTP requests and responses.
schedulerDesignate tasks that can be scheduled.
settingsDeclare the configurations of your app.
slashCommandsDeclare the commands that your app offers.
uiRegister various host UI elements.
videoConfProvidersDeclare the video conferencing providers that your app offers.

In the following sections, we will learn how to implement these accessors in our apps.