def _write_site_yml(self, site, content):
     """
     Writes the site authentication file.
     """
     session_cache._write_yaml_file(
         session_cache._get_site_authentication_file_location(site),
         content)
Esempio n. 2
0
 def _write_site_yml(self, site, content):
     """
     Writes the site authentication file.
     """
     session_cache._write_yaml_file(
         session_cache._get_site_authentication_file_location(site),
         content
     )
Esempio n. 3
0
 def _write_global_yml(self, content):
     """
     Writes the global authentication file.
     """
     session_cache._write_yaml_file(
         session_cache._get_global_authentication_file_location(),
         content
     )
 def _write_global_yml(self, content):
     """
     Writes the global authentication file.
     """
     session_cache._write_yaml_file(
         session_cache._get_global_authentication_file_location(), content)