1
0
Fork 0
mirror of synced 2024-09-30 17:26:48 +13:00

Merge branch 'update-auth-labels' of https://github.com/appwrite/appwrite into update-auth-labels

This commit is contained in:
Christy Jacob 2024-01-29 20:07:42 +00:00
commit 77c4c5d294
2 changed files with 2 additions and 1 deletions

View file

@ -2866,6 +2866,7 @@ App::post('/v1/account/verification/phone')
->desc('Create phone verification')
->groups(['api', 'account', 'auth'])
->label('scope', 'account')
->label('auth.type', 'phone')
->label('event', 'users.[userId].verification.[tokenId].create')
->label('audits.event', 'verification.create')
->label('audits.resource', 'user/{response.userId}')

View file

@ -365,7 +365,7 @@ App::init()
break;
default:
throw new Exception(Exception::USER_AUTH_METHOD_UNSUPPORTED, 'Unsupported authentication route');
throw new Exception(Exception::USER_AUTH_METHOD_UNSUPPORTED, 'Unsupported authentication type: ' . $route->getLabel('auth.type', ''));
break;
}
});