blob: a42b7b8b5ad08d6fef401653f66ad0fccccdbe40 (
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)
}
|