You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 24, 2024. It is now read-only.
DefaultContext implements buffalo.Context and this is the core context for buffalo's application flow, and it should be configured correctly to work properly with its functions. However, DefaultContext is currently public, so it can be used without careful configuration by initializing it directly. It could be better to make it private and just provide a generator function. (currently, App.newContext() is the generator)
TODO
make DefaultContext private and only allow it to be generated by App.newContext() or other internal code.
DefaultContext
implementsbuffalo.Context
and this is the core context for buffalo's application flow, and it should be configured correctly to work properly with its functions. However,DefaultContext
is currently public, so it can be used without careful configuration by initializing it directly. It could be better to make it private and just provide a generator function. (currently,App.newContext()
is the generator)TODO
App.newContext()
or other internal code.Context
The text was updated successfully, but these errors were encountered: