You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
sessioncommunities.online/php/servers/known-servers.php

34 lines
635 B
PHP

<?php
/**
* \file
* Provide hardcoded information on Community servers and Communities.
*/
/**
* @var string[] $ICON_ALLOWLIST
* Hostnames or rooms considered to have safe room icons.
*/
$ICON_ALLOWLIST = [
"open.getsession.org",
"sog.caliban.org",
"sog.zcyph.cc",
"icon+55e4021b",
];
/**
* @var string[] $ICON_BLOCKLIST
* Hostnames or rooms considered to have unsafe room icons.
*/
$ICON_BLOCKLIST = [
];
/**
* @var string[] $ROOMS_USED_BY_PROJECT
* Community rooms encouraged for use in discussing https://sessioncommmunities.online/.
*/
$ROOMS_USED_BY_PROJECT = [
"sogops+118d"
];
?>