1
0
Fork 0
mirror of synced 2024-07-01 20:50:49 +12:00
appwrite/app/config/auth.php

49 lines
1.5 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/client/account?sdk=web-default#accountCreateSession',
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/client/account?sdk=web-default#accountCreateMagicURLSession',
'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/client/account?sdk=web-default#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' => '',
'enabled' => false,
],
2022-05-24 02:54:50 +12:00
];