Skip to content

Commit

Permalink
fix: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
ivarconr committed May 21, 2021
1 parent af8fb94 commit e095691
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion docs/addons/datadog.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down
2 changes: 1 addition & 1 deletion docs/addons/teams.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down
2 changes: 1 addition & 1 deletion docs/user_guide/whats-new-v4.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
6 changes: 3 additions & 3 deletions src/lib/routes/client-api/index.js
Original file line number Diff line number Diff line change
@@ -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 {
Expand Down
4 changes: 2 additions & 2 deletions src/lib/services/client-metrics/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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');
Expand Down

0 comments on commit e095691

Please sign in to comment.