1
0
Fork 0
mirror of synced 2024-06-29 19:50:26 +12:00
appwrite/app/config/auth.php

56 lines
1.9 KiB
PHP
Raw Normal View History

2022-05-24 02:54:50 +12:00
<?php
2021-02-28 23:16:27 +13:00
// Auth methods
return [
'email-password' => [
'name' => 'Email/Password',
2021-08-06 20:01:53 +12:00
'key' => 'emailPassword',
'icon' => '/images/users/email.png',
'docs' => 'https://appwrite.io/docs/references/cloud/client-web/account#accountCreateEmailPasswordSession',
2021-02-28 23:16:27 +13:00
'enabled' => true,
],
'magic-url' => [
'name' => 'Magic URL',
'key' => 'usersAuthMagicURL',
'icon' => '/images/users/magic-url.png',
'docs' => 'https://appwrite.io/docs/references/cloud/client-web/account#accountCreateMagicURLToken',
'enabled' => true,
],
2024-01-23 03:30:11 +13:00
'email-otp' => [
2024-01-20 02:42:26 +13:00
'name' => 'Email (OTP)',
2024-01-23 03:30:11 +13:00
'key' => 'emailOtp',
2024-01-20 02:42:26 +13:00
'icon' => '/images/users/email.png',
'docs' => 'https://appwrite.io/docs/references/cloud/client-web/account#accountCreateEmailToken',
'enabled' => true,
],
2021-02-28 23:16:27 +13:00
'anonymous' => [
'name' => 'Anonymous',
2021-08-06 20:01:53 +12:00
'key' => 'anonymous',
2021-02-28 23:16:27 +13:00
'icon' => '/images/users/anonymous.png',
'docs' => 'https://appwrite.io/docs/references/cloud/client-web/account#accountCreateAnonymousSession',
2021-02-28 23:16:27 +13:00
'enabled' => true,
],
'invites' => [
'name' => 'Invites',
2021-08-06 20:01:53 +12:00
'key' => 'invites',
2021-02-28 23:16:27 +13:00
'icon' => '/images/users/invites.png',
'docs' => 'https://appwrite.io/docs/client/teams?sdk=web-default#teamsCreateMembership',
2021-02-28 23:16:27 +13:00
'enabled' => true,
],
'jwt' => [
'name' => 'JWT',
2021-08-06 20:01:53 +12:00
'key' => 'JWT',
2021-02-28 23:16:27 +13:00
'icon' => '/images/users/jwt.png',
'docs' => 'https://appwrite.io/docs/client/account?sdk=web-default#accountCreateJWT',
2021-02-28 23:16:27 +13:00
'enabled' => true,
],
2021-03-01 00:40:42 +13:00
'phone' => [
'name' => 'Phone',
2021-08-06 20:01:53 +12:00
'key' => 'phone',
2021-03-01 00:40:42 +13:00
'icon' => '/images/users/phone.png',
'docs' => 'https://appwrite.io/docs/references/cloud/client-web/account#accountCreatePhoneToken',
2022-06-15 03:41:58 +12:00
'enabled' => true,
2021-03-01 00:40:42 +13:00
],
2022-05-24 02:54:50 +12:00
];