Skip to content

Commit

Permalink
update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
qinezh committed Aug 7, 2023
1 parent a137a04 commit 6e5454a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions adaptive-card-notification/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,14 +56,14 @@ Adaptive Card Notification provides an easy way to send notification in Teams. T
};
```
1. Use Azure Blob Storage to persist notification connections
This sample provides an implementation of `NotificationTargetStorage` at `src/storage/blobsStorage.ts`, which connects to Azure Blob Storage to persist notification connections.
This sample provides an implementation of `NotificationTargetStorage` at `src/storage/blobsStore.ts`, which connects to Azure Blob Storage to persist notification connections.

To try it, uncomment the `notification.storage` settings of your bot in `src/internal/initialize.ts`, then enter your own connection string and container name.
To try it, uncomment the `notification.store` settings of your bot in `src/internal/initialize.ts`, then enter your own connection string and container name.
``` typescript
...
notification: {
enabled: true,
storage: new BlobsStorage("{your-connection-string}", "{your-container-name}"),
store: new BlobStore("{your-connection-string}", "{your-container-name}"),
},
...
```
Expand Down

0 comments on commit 6e5454a

Please sign in to comment.