mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-05-18 17:25:16 -04:00
UserService: Improve method naming
This renames `createOrUpdateHistoryEntry` to `updateHistoryEntryTimestamp`, which reduces confusion with the similarly named `updateHistoryEntry` function. Signed-off-by: David Mehren <git@herrmehren.de>
This commit is contained in:
parent
f667410b51
commit
99db4bc336
6 changed files with 16 additions and 16 deletions
|
@ -87,7 +87,7 @@ describe('History', () => {
|
|||
.expect('Content-Type', /json/)
|
||||
.expect(200);
|
||||
expect(emptyResponse.body.length).toEqual(0);
|
||||
const entry = await historyService.createOrUpdateHistoryEntry(note, user);
|
||||
const entry = await historyService.updateHistoryEntryTimestamp(note, user);
|
||||
const entryDto = historyService.toHistoryEntryDto(entry);
|
||||
const response = await request(app.getHttpServer())
|
||||
.get('/me/history')
|
||||
|
@ -182,7 +182,7 @@ describe('History', () => {
|
|||
});
|
||||
|
||||
it('PUT /me/history/:note', async () => {
|
||||
const entry = await historyService.createOrUpdateHistoryEntry(note2, user);
|
||||
const entry = await historyService.updateHistoryEntryTimestamp(note2, user);
|
||||
expect(entry.pinStatus).toBeFalsy();
|
||||
await request(app.getHttpServer())
|
||||
.put(`/me/history/${entry.note.alias || 'undefined'}`)
|
||||
|
@ -195,8 +195,8 @@ describe('History', () => {
|
|||
});
|
||||
|
||||
it('DELETE /me/history/:note', async () => {
|
||||
const entry = await historyService.createOrUpdateHistoryEntry(note2, user);
|
||||
const entry2 = await historyService.createOrUpdateHistoryEntry(note, user);
|
||||
const entry = await historyService.updateHistoryEntryTimestamp(note2, user);
|
||||
const entry2 = await historyService.updateHistoryEntryTimestamp(note, user);
|
||||
const entryDto = historyService.toHistoryEntryDto(entry2);
|
||||
await request(app.getHttpServer())
|
||||
.delete(`/me/history/${entry.note.alias || 'undefined'}`)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue