demo: endpoint

This commit is contained in:
Mohamed Sohail 2024-02-05 10:24:52 +03:00
parent f9a00b32b1
commit 049d20b0a2
Signed by: kamikazechaser
GPG Key ID: 7DD45520C01CD85D

View File

@ -23,23 +23,23 @@ export default {
}, },
endpoints: { endpoints: {
registration: { registration: {
url: `${process.env.BASE_URL}/registration`, url: `https://pb.farmstar.grassecon.org/registration`,
method: 'post' method: 'post'
}, },
transaction: { transaction: {
url: `${process.env.BASE_URL}/transaction`, url: `https://pb.farmstar.grassecon.org/transaction`,
method: 'post' method: 'post'
}, },
farmer: { farmer: {
url: `${process.env.BASE_URL}/farmer`, url: `https://pb.farmstar.grassecon.org/farmer`,
method: 'post' method: 'post'
}, },
distributor: { distributor: {
url: `${process.env.BASE_URL}/distributor`, url: `https://pb.farmstar.grassecon.org/distributor`,
method: 'post' method: 'post'
}, },
redeem: { redeem: {
url: `${process.env.BASE_URL}/redeem`, url: `https://pb.farmstar.grassecon.org/redeem`,
method: 'post' method: 'post'
} }
} }