From f1104826a26857e496e534fe4f458bf0abfa851f Mon Sep 17 00:00:00 2001 From: rabeaM Date: Mon, 18 Nov 2024 15:08:49 +0100 Subject: [PATCH] Added some description to handle the feature toggle --- README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/README.md b/README.md index 3cbce225..6e102bf2 100644 --- a/README.md +++ b/README.md @@ -42,6 +42,16 @@ And for intelliJ we include a [intellij-codestyle.xml](/.config/intellij-codesty 1. Add the file in Settings -> Editor -> Code Style -> Java 2. For the checkstyle-plugin you can add the file [checkstyle](/.config/checkstyle.xml) under Settings -> Tools -> Checkstyle -> Configuration File +### Feature + +Within the backend, controllers that are defined as Featurable can be activated and deactivated. + +Example: + +``` +(@ConditionalOnProperty(value = “feature.search-by-manager”, havingValue = “true”) +``` +They are defined within the application.yml. This configuration is then picked up in the frontend and deactivated features are not displayed there. ## License