Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Jay Mehta
/
zango-frontend
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Registry
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit 25eaa001
authored
2024-05-27 16:12:54 +0530
by
Ravindra Kanojiya
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
updated
1 parent
6fa6545c
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
24 additions
and
0 deletions
components/layout/Footer.js
redux/actions/newsletterAction.js
components/layout/Footer.js
View file @
25eaa00
This diff is collapsed.
Click to expand it.
redux/actions/newsletterAction.js
0 → 100644
View file @
25eaa00
import
axios
from
"axios"
;
import
qs
from
"qs"
;
import
{
GET_TESTIMONIAL_FAIL
,
GET_TESTIMONIAL_REQUEST
,
GET_TESTIMONIAL_SUCCESS
}
from
"../constants/testimonialConstants"
;
export
const
newsletter
=
async
email
=>
{
try
{
console
.
log
(
"email"
,
email
);
const
config
=
{
headers
:
{
"Content-Type"
:
"application/json"
}
};
const
data
=
{
data
:
{
email
:
email
}
};
const
response
=
await
axios
.
post
(
`
${
process
.
env
.
NEXT_PUBLIC_BACKEND_API_URL
}
/api/newsletters`
,
data
,
config
);
console
.
log
(
"response > "
,
response
.
data
);
return
response
.
data
;
}
catch
(
error
)
{}
};
Write
Preview
Styling with
Markdown
is supported
Attach a file
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 post a comment