Add local users

This commit is contained in:
2023-12-11 18:27:33 -07:00
parent d00fe6fdb7
commit 6b2fd89ab2
8 changed files with 61 additions and 18 deletions

View File

@@ -1,6 +1,5 @@
import { Controller, Get, Res } from '@nestjs/common';
import { Response } from 'express';
import { identity, prop } from 'ramda';
import * as xml from 'xml';
import { InjectMetric } from '@willsoto/nestjs-prometheus';
import { Gauge, Histogram } from 'prom-client';
@@ -148,7 +147,7 @@ export class DinosaurwetController {
@InjectMetric('weekly_count') public weeklyCount: Gauge<string>,
@InjectMetric('daily_count') public dailyCount: Gauge<string>,
@InjectMetric('rss_query_count') public queryCount: Gauge<string>,
) {}
) { }
@Get('')
getAllAtOnce(@Res() response: Response) {