diff options
Diffstat (limited to 'src/services/register-instance.ts')
| -rw-r--r-- | src/services/register-instance.ts | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/src/services/register-instance.ts b/src/services/register-instance.ts deleted file mode 100644 index 6576a9ed06..0000000000 --- a/src/services/register-instance.ts +++ /dev/null @@ -1,22 +0,0 @@ -import Instance, { IInstance } from '../models/instance'; -import federationChart from '../chart/federation'; - -export default async function(host: string): Promise<IInstance> { - if (host == null) return null; - - const index = await Instance.findOne({ host }); - - if (index == null) { - const i = await Instance.insert({ - host, - caughtAt: new Date(), - system: null // TODO - }); - - federationChart.update(true); - - return i; - } else { - return index; - } -} |