1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-25 00:07:47 +01:00

fix: lint

This commit is contained in:
Ivar Conradi Østhus 2021-05-21 19:16:08 +02:00
parent af8fb949cc
commit e095691c1e
No known key found for this signature in database
GPG Key ID: 31AC596886B0BD09
5 changed files with 8 additions and 8 deletions

View File

@ -3,7 +3,7 @@ id: datadog
title: Datadog
---
> This feature was introduced in \_Unleash v4.0.x.
> This feature was introduced in _Unleash v4.0.0_.
The Datadog addon allows Unleash to post Updates to Datadog when a feature toggle is updated. To set up this addon, you need to set up a webhook connector for your channel. You can follow [Submitting events to Datadog](https://docs.datadoghq.com/api/latest/events/#post-an-event) on how to do that.

View File

@ -3,7 +3,7 @@ id: teams
title: Microsoft Teams
---
> This feature was introduced in \_Unleash v4.0.x.
> This feature was introduced in _Unleash v4.0.0_.
The MicrosoftTeams addon allows Unleash to post Updates when a feature toggle is updated. To set up this addon, you need to set up a webhook connector for your channel. You can follow [Creating an Incoming Webhook for a channel](https://docs.microsoft.com/en-us/microsoftteams/platform/webhooks-and-connectors/how-to/add-incoming-webhook) on how to do that.

View File

@ -27,7 +27,7 @@ With Role-Based Access Control you can now assign groups to users in order to co
Addons make it easy to integrate Unleash with other systems. In version 4 we bring two new integrations to Unleash:
- [Microsoft Teams](../addons/teams)
- [Datadog](../datadog)
- [Datadog](../addons/datadog)
### Improved UX

View File

@ -1,9 +1,9 @@
'use strict';
const Controller = require('../controller');
const FeatureController = require('./feature.js');
const MetricsController = require('./metrics.js');
const RegisterController = require('./register.js');
const FeatureController = require('./feature');
const MetricsController = require('./metrics');
const RegisterController = require('./register');
const apiDef = require('./api-def.json');
class ClientApi extends Controller {

View File

@ -2,8 +2,8 @@
'use strict';
const Projection = require('./projection.js');
const TTLList = require('./ttl-list.js');
const Projection = require('./projection');
const TTLList = require('./ttl-list');
const appSchema = require('./metrics-schema');
const { clientMetricsSchema } = require('./client-metrics-schema');
const { clientRegisterSchema } = require('./register-schema');