feat: ability to enable/disable the bank connect feature (#423)

This commit is contained in:
Ahmed Bouhuolia
2024-04-24 20:01:04 +02:00
committed by GitHub
parent 1372a1f0a8
commit 7abfa6a162
10 changed files with 58 additions and 43 deletions

View File

@@ -8,10 +8,10 @@ export default class DashboardMetaController {
dashboardService: DashboardService;
/**
*
* Constructor router.
* @returns
*/
router() {
public router() {
const router = Router();
router.get('/boot', this.getDashboardBoot);
@@ -25,7 +25,7 @@ export default class DashboardMetaController {
* @param {Response} res -
* @param {NextFunction} next -
*/
getDashboardBoot = async (
private getDashboardBoot = async (
req: Request,
res: Response,
next: NextFunction