We need a simple way of deactivating authentication for testing and development.
Add a DISABLE_ROCKET_AUTH environment variable and check it in the Request guard. If the value is false or unset, setup auth like normal; if the value is true, setup the Request guard without auth.
Add clear docs and logging.
We need a simple way of deactivating authentication for testing and development.
Add a `DISABLE_ROCKET_AUTH` environment variable and check it in the `Request` guard. If the value is `false` or unset, setup auth like normal; if the value is `true`, setup the `Request` guard without auth.
Add clear docs and logging.
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
We need a simple way of deactivating authentication for testing and development.
Add a
DISABLE_ROCKET_AUTHenvironment variable and check it in theRequestguard. If the value isfalseor unset, setup auth like normal; if the value istrue, setup theRequestguard without auth.Add clear docs and logging.
Addressed in PR#36.