forked from GNUsocial/gnu-social
OStatus enabled by default, only disabled for private siteprofile
This commit is contained in:
parent
220ec072c9
commit
c15216f00b
@ -305,10 +305,12 @@ $default =
|
|||||||
'Oembed' => array(),
|
'Oembed' => array(),
|
||||||
'OpenID' => array(),
|
'OpenID' => array(),
|
||||||
'OpportunisticQM' => array(),
|
'OpportunisticQM' => array(),
|
||||||
|
'OStatus' => array(),
|
||||||
'Poll' => array(),
|
'Poll' => array(),
|
||||||
'QnA' => array(),
|
'QnA' => array(),
|
||||||
'SearchSub' => array(),
|
'SearchSub' => array(),
|
||||||
'TagSub' => array(),
|
'TagSub' => array(),
|
||||||
|
'WebFinger' => array(),
|
||||||
),
|
),
|
||||||
'locale_path' => false, // Set to a path to use *instead of* each plugin's own locale subdirectories
|
'locale_path' => false, // Set to a path to use *instead of* each plugin's own locale subdirectories
|
||||||
'server' => null,
|
'server' => null,
|
||||||
|
@ -110,11 +110,8 @@ class PublicSite extends SiteProfileSettings
|
|||||||
'plugins' => array(
|
'plugins' => array(
|
||||||
'core' => self::corePlugins(),
|
'core' => self::corePlugins(),
|
||||||
'default' => array_merge(self::defaultPlugins(), array(
|
'default' => array_merge(self::defaultPlugins(), array(
|
||||||
'Directory' => array(),
|
|
||||||
'ExtendedProfile' => array(),
|
'ExtendedProfile' => array(),
|
||||||
'OStatus' => array(),
|
|
||||||
'RegisterThrottle' => array(),
|
'RegisterThrottle' => array(),
|
||||||
'WebFinger' => array(),
|
|
||||||
))
|
))
|
||||||
),
|
),
|
||||||
'discovery' => array('cors' => true) // Allow Cross-Origin Resource Sharing for service discovery (host-meta, XRD, etc.)
|
'discovery' => array('cors' => true) // Allow Cross-Origin Resource Sharing for service discovery (host-meta, XRD, etc.)
|
||||||
@ -147,11 +144,12 @@ class PrivateSite extends SiteProfileSettings
|
|||||||
'plugins' => array(
|
'plugins' => array(
|
||||||
'core' => self::corePlugins(),
|
'core' => self::corePlugins(),
|
||||||
'default' => array_merge(self::defaultPlugins(), array(
|
'default' => array_merge(self::defaultPlugins(), array(
|
||||||
'Directory' => array(),
|
|
||||||
'ExtendedProfile' => array(),
|
'ExtendedProfile' => array(),
|
||||||
'EmailRegistration' => array(),
|
'EmailRegistration' => array(),
|
||||||
'MobileProfile' => array(),
|
'MobileProfile' => array(),
|
||||||
))
|
)),
|
||||||
|
'disable-OStatus' => 1,
|
||||||
|
'disable-WebFinger' => 1,
|
||||||
),
|
),
|
||||||
'profile' => array('delete' => 'true'),
|
'profile' => array('delete' => 'true'),
|
||||||
'license' => array('type' => 'private'),
|
'license' => array('type' => 'private'),
|
||||||
@ -199,9 +197,6 @@ class CommunitySite extends SiteProfileSettings
|
|||||||
'plugins' => array(
|
'plugins' => array(
|
||||||
'core' => self::corePlugins(),
|
'core' => self::corePlugins(),
|
||||||
'default' => array_merge(self::defaultPlugins(), array(
|
'default' => array_merge(self::defaultPlugins(), array(
|
||||||
'Directory' => array(),
|
|
||||||
'OStatus' => array(),
|
|
||||||
'WebFinger' => array(),
|
|
||||||
))
|
))
|
||||||
),
|
),
|
||||||
'discovery' => array('cors' => true) // Allow Cross-Origin Resource Sharing for service discovery (host-meta, XRD, etc.)
|
'discovery' => array('cors' => true) // Allow Cross-Origin Resource Sharing for service discovery (host-meta, XRD, etc.)
|
||||||
@ -235,11 +230,10 @@ class SingleuserSite extends SiteProfileSettings
|
|||||||
'core' => self::corePlugins(),
|
'core' => self::corePlugins(),
|
||||||
'default' => array_merge(self::defaultPlugins(), array(
|
'default' => array_merge(self::defaultPlugins(), array(
|
||||||
'MobileProfile' => array(),
|
'MobileProfile' => array(),
|
||||||
'OStatus' => array(),
|
|
||||||
'TwitterBridge' => array(),
|
'TwitterBridge' => array(),
|
||||||
'FacebookBridge' => array(),
|
'FacebookBridge' => array(),
|
||||||
'WebFinger' => array(),
|
)),
|
||||||
))
|
'disable-Directory' => 1,
|
||||||
),
|
),
|
||||||
'discovery' => array('cors' => true) // Allow Cross-Origin Resource Sharing for service discovery (host-meta, XRD, etc.)
|
'discovery' => array('cors' => true) // Allow Cross-Origin Resource Sharing for service discovery (host-meta, XRD, etc.)
|
||||||
);
|
);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user