Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
bodysch-backend
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
JetBrains YouTrack
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
KSZK
DevTeam
org
BodySCH
bodysch-backend
Merge requests
!6
Feature/news api
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Feature/news api
feature/news_api
into
dev
Overview
0
Commits
16
Pipelines
0
Changes
4
Merged
chif
requested to merge
feature/news_api
into
dev
5 years ago
Overview
0
Commits
16
Pipelines
0
Changes
4
Expand
0
0
Merge request reports
Viewing commit
e0d33218
Prev
Next
Show latest version
4 files
+
36
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
4
Search (e.g. *.vue) (Ctrl+P)
e0d33218
Create first middleware with dummy data
· e0d33218
chif
authored
5 years ago
src/middlewares/news/getNewsList.ts
0 → 100644
+
23
−
0
Options
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