def make_app(https_server_manage: HttpsServerManage): """ https_server_manage -- allows to controll the server (specifically reload its SSL certificates). A relevant handler should get this object via the method `initialize`. """ routes = app_remote.get_routes( ruby_pcsd_wrapper, sync_config_lock, https_server_manage, ) if not disable_gui: routes.extend( app_gui.get_routes(session_storage, ruby_pcsd_wrapper, public_dir)) return Application(routes, debug=debug)
def make_app(https_server_manage: HttpsServerManage): """ https_server_manage -- allows to controll the server (specifically reload its SSL certificates). A relevant handler should get this object via the method `initialize`. """ routes = app_remote.get_routes( ruby_pcsd_wrapper, sync_config_lock, https_server_manage, ) if not disable_gui: routes.extend( app_gui.get_routes( session_storage, ruby_pcsd_wrapper, public_dir ) ) return Application(routes, debug=debug)
def get_routes(self): return app_gui.get_routes( self.session_storage, self.wrapper, PUBLIC_DIR, )