blob: ef609a749449a964ef14286de50ba8051d065dc8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
import fetchJson from 'helpers/fetchJson'
export const changePassword = async (data) => (
await fetchJson('/api/password', {
method: 'POST',
headers: { 'Content-Type': 'plain/text; charset=utf-8' },
body: JSON.stringify(data)
})
)
|