Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
KevLehman committed Aug 1, 2024
1 parent 7f5ba67 commit 137a25b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ import { Rooms, AuditLog } from '@rocket.chat/models';
import type { PaginatedRequest, PaginatedResult } from '@rocket.chat/rest-typings';
import Ajv from 'ajv';

import { API } from '../../../../app/api/server/api';
import { getPaginationItems } from '../../../../app/api/server/helpers/getPaginationItems';
import { findUsersOfRoom } from '../../../../server/lib/findUsersOfRoom';
import { API } from '../../../app/api/server/api';
import { getPaginationItems } from '../../../app/api/server/helpers/getPaginationItems';
import { findUsersOfRoom } from '../../../server/lib/findUsersOfRoom';

const ajv = new Ajv({
coerceTypes: true,
Expand Down
2 changes: 1 addition & 1 deletion apps/meteor/ee/server/startup/audit.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { createPermissions } from '../lib/audit/startup';

await License.onLicense('auditing', async () => {
await import('../lib/audit/methods');
await import('../lib/audit/endpoints');
await import('../api/audit');

await createPermissions();
});

0 comments on commit 137a25b

Please sign in to comment.