upd: profile
Deskripsi: - percobaan fetch profile menggunakan redux - install package redux No Issues
This commit is contained in:
10
lib/api.ts
10
lib/api.ts
@@ -9,16 +9,16 @@ export const apiCheckPhoneLogin = async (body: { phone: string }) => {
|
||||
return response.data;
|
||||
}
|
||||
|
||||
export const apiSendOtp = async (body: { phone: string, otp:number }) => {
|
||||
export const apiSendOtp = async (body: { phone: string, otp: number }) => {
|
||||
const res = await axios.get(`https://wa.wibudev.com/code?nom=${body.phone}&text=*DARMASABA*%0A%0A
|
||||
JANGAN BERIKAN KODE RAHASIA ini kepada siapa pun TERMASUK PIHAK DARMASABA. Masukkan otentikasi: *${encodeURIComponent(body.otp)}*`)
|
||||
return res.status
|
||||
}
|
||||
|
||||
// export const getEntities = async () => {
|
||||
// const response = await axios.get('https://stg-darmasaba.wibudev.com/api/version-app');
|
||||
// return response.data;
|
||||
// };
|
||||
export const apiGetProfile = async ({ id }: { id: string }) => {
|
||||
const response = await api.get(`/user/${id}`);
|
||||
return response.data;
|
||||
};
|
||||
|
||||
// export const createEntity = async (newEntity: any) => {
|
||||
// const response = await api.post('/entities', newEntity);
|
||||
|
||||
Reference in New Issue
Block a user