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

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