Skip to content

Commit cd8dc93

Browse files
committed
fix: excess spacing in api-key.service
1 parent 67748a3 commit cd8dc93

File tree

1 file changed

+1
-9
lines changed

1 file changed

+1
-9
lines changed

api/src/unraid-api/auth/api-key.service.ts

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,23 +3,15 @@ import crypto from 'crypto';
33
import { readdir, readFile, writeFile } from 'fs/promises';
44
import { join } from 'path';
55

6-
7-
86
import { ensureDir } from 'fs-extra';
97
import { GraphQLError } from 'graphql';
108
import { v4 as uuidv4 } from 'uuid';
119
import { ZodError } from 'zod';
1210

13-
14-
1511
import { ApiKeySchema, ApiKeyWithSecretSchema } from '@app/graphql/generated/api/operations';
1612
import { ApiKey, ApiKeyWithSecret, Role, UserAccount } from '@app/graphql/generated/api/types';
1713
import { getters } from '@app/store';
1814

19-
20-
21-
22-
2315
@Injectable()
2416
export class ApiKeyService implements OnModuleInit {
2517
private readonly logger = new Logger(ApiKeyService.name);
@@ -308,4 +300,4 @@ export class ApiKeyService implements OnModuleInit {
308300
keyFile: this.keyFile,
309301
};
310302
}
311-
}
303+
}

0 commit comments

Comments
 (0)