Skip to content
Snippets Groups Projects

Feature/news api

Merged chif requested to merge feature/news_api into dev
4 files
+ 36
0
Compare changes
  • Side-by-side
  • Inline
Files
4
+ 23
0
import { Request, Response, NextFunction } from 'express';
import { News } from '../../models/News.interface';
const getNewsListMiddleware = () => {
return (req: Request, res: Response, next: NextFunction) => {
const NewsArray: News[] = [];
NewsArray.push({
author: {
userName: 'Chif',
_id: 0,
},
title: 'Chif news',
text: 'asdasdasdasd',
publishDate: new Date(),
});
res.json({ news: NewsArray});
}
}
export default getNewsListMiddleware;
\ No newline at end of file
Loading