mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-21 17:26:29 -05:00
RevisionsService: Add hardcoded-data warnings.
Signed-off-by: David Mehren <git@herrmehren.de>
This commit is contained in:
parent
387e4c3b99
commit
4851e2c31c
1 changed files with 4 additions and 1 deletions
|
@ -1,10 +1,12 @@
|
|||
import { Injectable } from '@nestjs/common';
|
||||
import { Injectable, Logger } from '@nestjs/common';
|
||||
import { RevisionMetadataDto } from './revision-metadata.dto';
|
||||
import { RevisionDto } from './revision.dto';
|
||||
|
||||
@Injectable()
|
||||
export class RevisionsService {
|
||||
private readonly logger = new Logger(RevisionsService.name);
|
||||
getNoteRevisionMetadatas(noteIdOrAlias: string): RevisionMetadataDto[] {
|
||||
this.logger.warn('Using hardcoded data!');
|
||||
return [
|
||||
{
|
||||
id: 'some-uuid',
|
||||
|
@ -15,6 +17,7 @@ export class RevisionsService {
|
|||
}
|
||||
|
||||
getNoteRevision(noteIdOrAlias: string, revisionId: string): RevisionDto {
|
||||
this.logger.warn('Using hardcoded data!');
|
||||
return {
|
||||
id: revisionId,
|
||||
content: 'Foobar',
|
||||
|
|
Loading…
Reference in a new issue