Skip to content

Commit

Permalink
Add missing header anchors
Browse files Browse the repository at this point in the history
  • Loading branch information
peterbozso committed Dec 1, 2020
1 parent a72e3e9 commit 4490c99
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions extensions/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ to specific areas of the application, and must adhere to a set of interfaces and

Extensions currently have access to the following functional areas:

- Authentication and identity - extensions can provide a mechanism to gate access to the application, as well as mechanisms used to provide user identity.
- Storage - extensions can override the built in filesystem storage with a new way to read, write and access bot projects.
- Web server - extensions can add additional web routes to Composer's web server instance.
- Publishing - extensions can add publishing mechanisms
- Runtime Templates - extensions can provide a runtime template used when "ejecting" from Composer
- Bot Project Templates - extensions can add items to the template list shown in the "new bot" flow
- Boilerplate Content - extensions can provide content copied into all bot projects (such as a readme file or helper scripts)
- [Authentication and identity](#authentication-and-identity) - extensions can provide a mechanism to gate access to the application, as well as mechanisms used to provide user identity.
- [Storage](#storage) - extensions can override the built in filesystem storage with a new way to read, write and access bot projects.
- [Web server](#web-server) - extensions can add additional web routes to Composer's web server instance.
- [Publishing](#publishing) - extensions can add publishing mechanisms
- [Runtime Templates](#runtime-templates) - extensions can provide a runtime template used when "ejecting" from Composer
- [Bot Project Templates](#bot-project-templates) - extensions can add items to the template list shown in the "new bot" flow
- [Boilerplate Content](#boilerplate-content) - extensions can provide content copied into all bot projects (such as a readme file or helper scripts)

Combining these endpoints, it is possible to achieve scenarios such as:

Expand Down Expand Up @@ -488,6 +488,8 @@ await composer.addBotTemplate({
});
```

### Boilerplate Content

In addition, boilerplate material will also be added to every new bot project. Extensions can bundle additional content that will be copied into every project, regardless of which template is used.

#### `composer.addBaseTemplate(template)`
Expand Down

0 comments on commit 4490c99

Please sign in to comment.