Skip to content

Commit f5ae4d8

Browse files
update
1 parent e367000 commit f5ae4d8

File tree

4 files changed

+14
-35
lines changed

4 files changed

+14
-35
lines changed

articles/azure-app-configuration/howto-feature-filters.md

Lines changed: 5 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -55,22 +55,13 @@ You can create custom feature filters that enable features based on your specifi
5555
> [!div class="mx-imgBorder"]
5656
> ![Screenshot of the Azure portal, applying new custom filter.](./media/feature-filters/feature-flag-edit-apply-filter.png)
5757
58-
You have successfully added a custom filter to a feature flag. Follow the instructions in the [Next Steps](#next-steps) section to implement the feature filter into your application for the language or platform you are using.
58+
You have successfully added a custom filter to a feature flag. Continue to the following instructions to implement the feature filter into your application for the language or platform you are using.
5959

60-
## Next steps
61-
62-
In this tutorial, you learned the concept of feature filter and added a custom feature filter to a feature flag.
63-
64-
To learn how to implement a custom feature filter, continue to the following tutorial:
65-
66-
> [!div class="nextstepaction"]
67-
> [ASP.NET Core](./howto-feature-filters-aspnet-core.md)
60+
- [ASP.NET Core](./howto-feature-filters-aspnet-core.md)
61+
- [Node.js](./howto-feature-filters-javascript.md)
62+
- [Python](./howto-feature-filters-python.md)
6863

69-
> [!div class="nextstepaction"]
70-
> [Node.js](./howto-feature-filters-javascript.md)
71-
72-
> [!div class="nextstepaction"]
73-
> [Python](./howto-feature-filters-python.md)
64+
## Next steps
7465

7566
To learn more about the built-in feature filters, continue to the following tutorials:
7667

articles/azure-app-configuration/howto-targetingfilter.md

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -68,16 +68,11 @@ In this article, you will learn how to add and configure a targeting filter for
6868
> [!div class="mx-imgBorder"]
6969
> ![Screenshot of the Azure portal, applying new targeting filter.](./media/feature-filters/feature-flag-edit-apply-targeting-filter.png)
7070
71-
Now, you successfully added a targeting filter for your feature flag. This targeting filter will use the targeting rule you configured to enable or disable the feature flag for specific users and groups. Follow the instructions in the [Next Steps](#next-steps) section to learn how it works in your application for the language or platform you are using.
71+
Now, you successfully added a targeting filter for your feature flag. This targeting filter will use the targeting rule you configured to enable or disable the feature flag for specific users and groups. Continue to the following instructions to use the feature flag with a targeting filter in your application for the language or platform you are using.
7272

73-
## Next steps
74-
75-
In this tutorial, you learned the concept of the targeting filter and added it to a feature flag.
76-
77-
To learn how to use the feature flag with a targeting filter in your application, continue to the following tutorial.
73+
- [ASP.NET Core](./howto-targetingfilter-aspnet-core.md)
7874

79-
> [!div class="nextstepaction"]
80-
> [ASP.NET Core](./howto-targetingfilter-aspnet-core.md)
75+
## Next steps
8176

8277
To learn more about the feature filters, continue to the following tutorials:
8378

articles/azure-app-configuration/howto-timewindow-filter-javascript.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,12 @@ You've added a time window filter for your *Beta* feature flag in the prerequisi
2929
When you create a feature manager, the built-in feature filters will be automatically added to its feature filter collection.
3030

3131
``` javascript
32-
// The Microsoft.TimeWindow and Microsoft.Targeting filters are auto-included, so you can use them directly in your feature flags.
3332
const fm = new FeatureManager(ffProvider);
3433
```
3534

3635
## Time window filter in action
3736

38-
When you run the application the configuration provider will load the *Beta* feature flag from Azure App Configuration. The result of the `isEnabled("Beta")` method will be printed to the console. If your current time is earlier than the start time set for the time window filter, the *Beta* feature flag will be disabled by the time window filter.
37+
When you run the application, the configuration provider will load the *Beta* feature flag from Azure App Configuration. The result of the `isEnabled("Beta")` method will be printed to the console. If your current time is earlier than the start time set for the time window filter, the *Beta* feature flag will be disabled by the time window filter.
3938

4039
You will see the following console outputs.
4140

articles/azure-app-configuration/howto-timewindow-filter.md

Lines changed: 5 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -39,19 +39,13 @@ In this article, you will learn how to add and configure a time window filter fo
3939
> [!div class="mx-imgBorder"]
4040
> ![Screenshot of the Azure portal, applying new time window filter.](./media/feature-filters/feature-flag-edit-apply-timewindow-filter.png)
4141
42-
Now, you successfully added a time window filter to a feature flag. Follow the instructions in the [Next Steps](#next-steps) section to learn how it works in your application for the language or platform you are using.
42+
Now, you successfully added a time window filter to a feature flag. Continue to the following instructions to use the feature flag with a time window filter in your application for the language or platform you are using.
4343

44-
## Next steps
45-
46-
In this tutorial, you learned the concept of the time window filter and added it to a feature flag.
44+
- [ASP.NET Core](./howto-timewindow-filter-aspnet-core.md)
45+
- [Node.js](./howto-timewindow-filter-javascript.md)
46+
- [Python](./howto-timewindow-filter-python.md)
4747

48-
To learn how to use the feature flag with a time window filter in your application, continue to the following tutorial.
49-
50-
> [!div class="nextstepaction"]
51-
> [ASP.NET Core](./howto-timewindow-filter-aspnet-core.md)
52-
53-
> [!div class="nextstepaction"]
54-
> [Node.js](./howto-timewindow-filter-javascript.md)
48+
## Next steps
5549

5650
To learn more about the feature filters, continue to the following tutorials:
5751

0 commit comments

Comments
 (0)