Файловый менеджер - Редактировать - /home/freeclou/app.optimyar.com/backend/.cache/ee/admin/hooks/useAuthProviders/index.js
Назад
import { useReducer, useEffect } from 'react'; import { request } from 'strapi-helper-plugin'; import { getRequestUrl } from '../../../../admin/src/utils'; import reducer, { initialState } from './reducer'; const useAuthProviders = ({ ssoEnabled }) => { const [state, dispatch] = useReducer(reducer, initialState); useEffect(() => { fetchAuthProviders(); // eslint-disable-next-line react-hooks/exhaustive-deps }, []); const fetchAuthProviders = async () => { try { if (!ssoEnabled) { dispatch({ type: 'GET_DATA_SUCCEEDED', data: [], }); return; } const requestUrl = getRequestUrl('providers'); const data = await request(requestUrl, { method: 'GET' }); dispatch({ type: 'GET_DATA_SUCCEEDED', data, }); } catch (err) { console.error(err); dispatch({ type: 'GET_DATA_ERROR', }); strapi.notification.toggle({ type: 'warning', message: { id: 'notification.error' }, centered: true, }); } }; return state; }; export default useAuthProviders;
| ver. 1.4 |
Github
|
.
| PHP 8.1.33 | Генерация страницы: 0.02 |
proxy
|
phpinfo
|
Настройка