set novin tenant
Production CI / validate-and-build (push) Failing after 1m1s

This commit is contained in:
2026-06-16 00:03:02 +03:30
parent 1a0c40ecde
commit 151eff2f7c
20 changed files with 177 additions and 5 deletions
+20
View File
@@ -0,0 +1,20 @@
import { posAuthNamedRoutes } from '@/domains/pos/modules/auth/constants';
import { POS_ROUTES } from '@/domains/pos/routes';
import { PUBLIC_SALE_INVOICES_ROUTES } from '@/modules/saleInvoices/constants';
import { Notfound } from '@/pages/notfound/notfound.component';
import { Routes } from '@angular/router';
export const appRoutes: Routes = [
{
path: '',
loadComponent: () =>
import('@/domains/pos/layouts/layout.component').then((m) => m.PosLayoutComponent),
children: [POS_ROUTES],
},
{
...posAuthNamedRoutes.login,
path: 'auth',
},
...PUBLIC_SALE_INVOICES_ROUTES,
{ path: '**', component: Notfound },
];
Binary file not shown.

After

Width:  |  Height:  |  Size: 83 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 70 KiB

+27
View File
@@ -0,0 +1,27 @@
import { BrandingConfig } from '../default/branding.config';
export const brandingConfig: BrandingConfig = {
appTitle: 'پرداحت نوین - مدیریت صورت‌حساب‌های مالیاتی',
manifestPath: '/favicon/site.webmanifest',
themeColor: '#ffffff',
enableInstallPrompt: true,
title: 'پرداحت نوین',
fullTitle: 'پرداحت نوین - مدیریت صورت‌حساب‌های مالیاتی',
support: {
phones: [
{
title: 'واحد پشتیبانی 1',
phones: ['021-91012345'],
},
{
title: 'واحد پشتیبانی 2',
phones: ['021-91012346'],
},
{
title: 'پاسخگویی اضطراری',
phones: ['0912-123-4567'],
},
],
workingHours: 'شنبه تا چهارشنبه: 8 صبح تا 5 عصر، پنجشنبه: 8 صبح تا 2 عصر',
},
};
+7
View File
@@ -0,0 +1,7 @@
import login from 'src/tenants/novin/assets/images/login.jpg';
import logo from 'src/tenants/novin/assets/images/logo.png';
export default {
logo,
login,
};
+3
View File
@@ -0,0 +1,3 @@
export default {
isPosApplication: true,
};