Add RSS to outbound service nodeinfo

This commit is contained in:
Matt Baer 2018-11-08 13:38:08 -05:00
parent be31da2fe7
commit d6f23b54e3
1 changed files with 4 additions and 2 deletions

View File

@ -32,8 +32,10 @@ func nodeInfoConfig(cfg *config.Config) *nodeinfo.Config {
nodeinfo.ProtocolActivityPub, nodeinfo.ProtocolActivityPub,
}, },
Services: nodeinfo.Services{ Services: nodeinfo.Services{
Inbound: []nodeinfo.NodeService{}, Inbound: []nodeinfo.NodeService{},
Outbound: []nodeinfo.NodeService{}, Outbound: []nodeinfo.NodeService{
nodeinfo.ServiceRSS,
},
}, },
Software: nodeinfo.SoftwareInfo{ Software: nodeinfo.SoftwareInfo{
Name: strings.ToLower(serverSoftware), Name: strings.ToLower(serverSoftware),