aboutsummaryrefslogtreecommitdiffstats
path: root/apps/Settings/api.js
blob: 559486f0f7182ebfa0e998073918e35ad49c4dd5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
import fetchJson from 'helpers/fetchJson'

export const saveSettings = async (data) => {
  fetchJson('/api/settings', {
    method: 'POST',
    headers: { 'Content-Type': 'application/json' },
    body: JSON.stringify(data),
  })
}