Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
L
laba_40
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Pavel Mishakov
laba_40
Commits
3b4ca672
Commit
3b4ca672
authored
Mar 21, 2025
by
Pavel Mishakov
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch '
#1
' into 'main'
#1
- created a function that returns last messages Closes
#1
See merge request
!1
parents
d60540e3
035c375a
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
24 additions
and
0 deletions
+24
-0
.gitignore
.gitignore
+0
-0
index.html
index.html
+11
-0
index.js
index.js
+13
-0
No files found.
.gitignore
0 → 100644
View file @
3b4ca672
index.html
View file @
3b4ca672
<!DOCTYPE html>
<html
lang=
"en"
>
<head>
<meta
charset=
"UTF-8"
>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1.0"
>
<title>
Document
</title>
</head>
<body>
<script
src=
"index.js"
></script>
</body>
</html>
\ No newline at end of file
index.js
0 → 100644
View file @
3b4ca672
const
getlastMessages
=
async
()
=>
{
try
{
const
response
=
await
fetch
(
'http://146.185.154.90:8000/messages'
)
const
messages
=
await
response
.
json
()
console
.
log
(
messages
)
return
messages
}
catch
(
err
)
{
console
.
log
(
err
)
}
}
console
.
log
(
getlastMessages
())
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment