summaryrefslogtreecommitdiffstats
path: root/client/src/admin/api/setDbLang.js
blob: e48f6d1c27642aac63373361d3ce1c63a255c91b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
export default (language) => (
  fetch('/api/user/language', {
    method: 'POST',
    headers: {
      'Content-Type': 'application/json',
    },
    body: JSON.stringify({ language }),
  })
    .catch(() => {})
);