aboutsummaryrefslogtreecommitdiffstats
path: root/apps/Settings/api.js
blob: f53836892d0c06086cc63116e46ec7552ec601f1 (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)
  })
}