blob: 8a9d85fcf80ed6415fb37081606fc1fa5cee221a (
plain)
1
2
3
4
5
6
7
|
import Axios from '@nextcloud/axios'
export function generateCodes () {
const url = OC.generateUrl('/apps/twofactor_backupcodes/settings/create');
return Axios.post(url, {}).then(resp => resp.data)
}
|