mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-20 06:40:31 +00:00
chore: document http query
This commit is contained in:
@@ -1,5 +1,5 @@
|
|||||||
import { Request, Response, NextFunction } from 'express';
|
|
||||||
import { Container } from 'typedi';
|
import { Container } from 'typedi';
|
||||||
|
import { Request, Response, NextFunction } from 'express';
|
||||||
import SettingsStore from '@/services/Settings/SettingsStore';
|
import SettingsStore from '@/services/Settings/SettingsStore';
|
||||||
|
|
||||||
export default async (req: Request, res: Response, next: NextFunction) => {
|
export default async (req: Request, res: Response, next: NextFunction) => {
|
||||||
|
|||||||
@@ -1,13 +1,12 @@
|
|||||||
// @ts-nocheck
|
// @ts-nocheck
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
|
import { useHistory } from 'react-router-dom';
|
||||||
|
import { Text } from '@blueprintjs/core';
|
||||||
import { Icon, For, FormattedMessage as T, Stack } from '@/components';
|
import { Icon, For, FormattedMessage as T, Stack } from '@/components';
|
||||||
|
|
||||||
import { getFooterLinks } from '@/constants/footerLinks';
|
import { getFooterLinks } from '@/constants/footerLinks';
|
||||||
import { useAuthActions } from '@/hooks/state';
|
import { useAuthActions } from '@/hooks/state';
|
||||||
import style from './SetupLeftSection.module.scss';
|
import style from './SetupLeftSection.module.scss';
|
||||||
import { Text } from '@blueprintjs/core';
|
|
||||||
import { Config } from '@/config';
|
import { Config } from '@/config';
|
||||||
import { useHistory } from 'react-router-dom';
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Footer item link.
|
* Footer item link.
|
||||||
|
|||||||
@@ -24,7 +24,7 @@ interface CreateOneClickDemoRes {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
* Creates one-click demo account.
|
||||||
* @param {UseMutationOptions<CreateOneClickDemoRes, Error, CreateOneClickDemoValues>} props
|
* @param {UseMutationOptions<CreateOneClickDemoRes, Error, CreateOneClickDemoValues>} props
|
||||||
* @returns {UseMutationResult<CreateOneClickDemoRes, Error, CreateOneClickDemoValues>}
|
* @returns {UseMutationResult<CreateOneClickDemoRes, Error, CreateOneClickDemoValues>}
|
||||||
*/
|
*/
|
||||||
@@ -53,7 +53,7 @@ interface OneClickSigninDemoValues {
|
|||||||
interface OneClickSigninDemoRes { }
|
interface OneClickSigninDemoRes { }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
* Sign-in to the created one-click demo account.
|
||||||
* @param {UseMutationOptions<OneClickSigninDemoRes, Error, OneClickSigninDemoValues>} props
|
* @param {UseMutationOptions<OneClickSigninDemoRes, Error, OneClickSigninDemoValues>} props
|
||||||
* @returns {UseMutationResult<OneClickSigninDemoRes, Error, OneClickSigninDemoValues>}
|
* @returns {UseMutationResult<OneClickSigninDemoRes, Error, OneClickSigninDemoValues>}
|
||||||
*/
|
*/
|
||||||
|
|||||||
Reference in New Issue
Block a user