Merge branch 'develop' into feature/2024.10

This commit is contained in:
dakkar 2024-11-28 11:17:27 +00:00
commit eb25238a8e
257 changed files with 3053 additions and 68 deletions

View file

@ -35,6 +35,12 @@ export const meta = {
id: '8e75455b-738c-471d-9f80-62693f33372e',
},
},
// 2 calls per second
limit: {
duration: 1000,
max: 2,
},
} as const;
export const paramDef = {
@ -50,6 +56,7 @@ export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-
constructor(
@Inject(DI.notesRepository)
private notesRepository: NotesRepository,
private noteEntityService: NoteEntityService,
private queryService: QueryService,
) {