I thought we would do
helper_method :current_user, :logged_in?, :authorized?
to make these controller methods available for use as helper metho
The self.included function is called when the module is included. It allows methods to be executed in the context of the base (where the module is included).
self.included
More info: a ruby mixin tutorial.