Create new POST route that create the user,
Including all needed code in:
"Branch by Abstraction" is a technique for making a large-scale change to a software system in gradual way that allows you to release the system regularly while the change is still in-progress.
Martin FowlerA feature toggle (also feature flag) is a technique in software development that attempts to provide an alternative to maintaining multiple branches in source code (known as feature branches), such that a software feature can be tested even before it is completed and ready for release.
WikipediaA feature toggle is used to hide, enable or disable the feature during runtime. For example, during the development process, a developer can enable the feature for testing and disable it for other users.
WikipediaA "if" statement in the code that wrap the feature's code
Eylon Malin