Skip to content

Commit

Permalink
Added some description to handle the feature toggle
Browse files Browse the repository at this point in the history
  • Loading branch information
ramueSVA committed Nov 18, 2024
1 parent 76eaa5c commit f110482
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit f110482

Please sign in to comment.