@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Use the correct `Content-Type` for the Aphlict status route

Summary: The `/status/` route for the Aphlict server returns JSON.

Test Plan:
```lang=bash
> curl -I http://127.0.0.1:22281/status/
HTTP/1.1 200 OK
Content-Type: application/json
Date: Fri, 02 Jan 2015 13:08:34 GMT
Connection: keep-alive
```

Reviewers: epriestley, #blessed_reviewers

Reviewed By: epriestley, #blessed_reviewers

Subscribers: Korvin, epriestley

Differential Revision: https://secure.phabricator.com/D11144

+1 -1
+1 -1
support/aphlict/server/aphlict_server.js
··· 242 242 'version': 6 243 243 }; 244 244 245 - response.writeHead(200, {'Content-Type': 'text/plain'}); 245 + response.writeHead(200, {'Content-Type': 'application/json'}); 246 246 response.write(JSON.stringify(status)); 247 247 response.end(); 248 248 });