Currently, we have 4 choices the "key", which represents the type of feature toggle:
- module
- start_date
- end_date
- time_bomb
What seems to be missing is a simple "on/off" value, a boolean to turn a feature on or off.
Also, from the existing 4 attributes, only start_date and end_date are described in the docs. It would be nice to have their roles explained. The concept is a bit hard to grasp at the moment.
As a workaround and for simplicity, we have settled to use the is_active method as a boolean value. This is probably not what you designed it for. 😏
Currently, we have 4 choices the "key", which represents the type of feature toggle:
What seems to be missing is a simple "on/off" value, a boolean to turn a feature on or off.
Also, from the existing 4 attributes, only
start_dateandend_dateare described in the docs. It would be nice to have their roles explained. The concept is a bit hard to grasp at the moment.As a workaround and for simplicity, we have settled to use the
is_activemethod as a boolean value. This is probably not what you designed it for. 😏