Index

apps/demo/src/app/pages/account-page/account-page.children-routes.ts

ACCOUNT_PAGE_CHILDREN_ROUTES
Type : []
Default value : [ { path: '', redirectTo: '/account/profile', pathMatch: 'full' }, { path: 'profile', loadChildren: './profile-frame/profile-frame.module#ProfileFrameModule', data: PROFILE_FRAME_ROUTES[0].data } ]

apps/demo/src/app/pages/account-page/account-page.routes.ts

ACCOUNT_PAGE_ROUTES
Type : []
Default value : [ { path: '', component: AccountPageComponent, canActivate: [PermissionsGuard, MetaGuard], data: { name: 'account', permissions: { only: 'read_account-page', redirectTo: '/home' }, meta: { title: translate('Account'), description: translate('Account page') } }, children: ACCOUNT_PAGE_CHILDREN_ROUTES } ]

apps/demo/src/app/pages/admin-page/admin-page.children-routes.ts

ADMIN_PAGE_CHILDREN_ROUTES
Type : []
Default value : [ { path: '', redirectTo: '/admin/users', pathMatch: 'full' }, { path: 'users', loadChildren: '../entities-page/users-frame/users-frame.module#UsersFrameModule', data: USERS_FRAME_ROUTES[0].data }, { path: 'groups', loadChildren: '../entities-page/groups-frame/groups-frame.module#GroupsFrameModule', data: GROUPS_FRAME_ROUTES[0].data } ]

apps/demo/src/app/pages/admin-page/admin-page.routes.ts

ADMIN_PAGE_ROUTES
Type : []
Default value : [ { path: '', component: AdminPageComponent, canActivate: [PermissionsGuard, MetaGuard], data: { name: 'admin', permissions: { only: 'read_admin-page', redirectTo: '/home' }, meta: { title: translate('Administration'), description: translate('Administration page') } }, children: ADMIN_PAGE_CHILDREN_ROUTES } ]

apps/demo/src/app/config/config.ts

config
Type : ICoreConfig
Default value : { app: { id: 'todo-demo', title: translate('Rucken: Todo'), description: translate('Core with UI for web todo application maked on Angular7+ based on Rucken template'), languages: [ { title: translate('Russian'), code: 'ru', translations: [RuI18n] } ] }, authModal: { signInInfoMessage: { text: `<p>{{title}}</p><ul><li>{{user1}}</li><li>{{user2}}</li><li>{{user3}}</li></ul>`, data: { title: translate('Demo users:'), user1: translate('user with admin group: admin@admin.com, password: 12345678'), user2: translate('user with user group: user1@user1.com, password: 12345678'), user3: translate('user with user group: user2@user2.com, password: 12345678') } }, signUpInfoMessage: '' }, oauth: [ { name: 'facebook', icon: ['fab', 'facebook-square'], signInTitle: translate('Sign in with Facebook') }, { name: 'google-plus', icon: ['fab', 'google-plus'], signInTitle: translate('Sign in with Google+') } ] }

apps/demo/src/app/pages/entities-page/content-types-frame/content-types-frame.routes.ts

CONTENT_TYPES_FRAME_ROUTES
Type : []
Default value : [ { path: '', component: ContentTypesFrameComponent, canActivate: [MetaGuard], data: { name: 'content-types', meta: { title: translate('Content types'), description: translate('Content types frame') } } } ]

apps/demo/src/app/pages/entities-page/entities-page.children-routes.ts

ENTITIES_PAGE_CHILDREN_ROUTES
Type : []
Default value : [ { path: '', redirectTo: '/entities/content-types', pathMatch: 'full' }, { path: 'content-types', loadChildren: './content-types-frame/content-types-frame.module#ContentTypesFrameModule', data: CONTENT_TYPES_FRAME_ROUTES[0].data }, { path: 'groups', loadChildren: './groups-frame/groups-frame.module#GroupsFrameModule', data: GROUPS_FRAME_ROUTES[0].data }, { path: 'permissions', loadChildren: './permissions-frame/permissions-frame.module#PermissionsFrameModule', data: PERMISSIONS_FRAME_ROUTES[0].data }, { path: 'users', loadChildren: './users-frame/users-frame.module#UsersFrameModule', data: USERS_FRAME_ROUTES[0].data }, { path: 'projects', loadChildren: './projects-frame/projects-frame.module#ProjectsFrameModule', data: PROJECTS_FRAME_ROUTES[0].data }, { path: 'tasks', loadChildren: './tasks-frame/tasks-frame.module#TasksFrameModule', data: TASKS_FRAME_ROUTES[0].data }, { path: 'statuses', loadChildren: './statuses-frame/statuses-frame.module#StatusesFrameModule', data: STATUSES_FRAME_ROUTES[0].data } ]

apps/demo/src/app/pages/entities-page/entities-page.routes.ts

ENTITIES_PAGE_ROUTES
Type : []
Default value : [ { path: '', component: EntitiesPageComponent, canActivate: [MetaGuard], data: { name: 'entities', meta: { title: translate('Entities'), description: translate('Entities page') } }, children: ENTITIES_PAGE_CHILDREN_ROUTES } ]

apps/demo/src/environments/environment-server.prod.ts

environment
Type : IEnvironment
Default value : { server: true, type: 'prod', production: true, apiUrl: 'https://todo-nestjs.rucken.io/api' }

apps/demo/src/environments/environment-server.ts

environment
Type : IEnvironment
Default value : { server: true, type: 'development', production: false, apiUrl: 'http://localhost:5000/api' }

apps/demo/src/environments/environment.prod.ts

environment
Type : IEnvironment
Default value : { server: false, type: 'prod', production: true, apiUrl: 'https://todo-nestjs.rucken.io/api' }

apps/demo/src/environments/environment.ts

environment
Type : IEnvironment
Default value : { server: false, type: 'development', production: false, apiUrl: 'http://localhost:5000/api' }

apps/demo/src/app/pages/entities-page/groups-frame/groups-frame.routes.ts

GROUPS_FRAME_ROUTES
Type : []
Default value : [ { path: '', component: GroupsFrameComponent, canActivate: [MetaGuard], data: { name: 'groups', meta: { title: translate('Groups'), description: translate('Groups frame') } } } ]

apps/demo/src/app/pages/home-page/home-page.routes.ts

HOME_PAGE_ROUTES
Type : []
Default value : [ { path: '', component: HomePageComponent, canActivate: [MetaGuard], data: { name: 'home', visible: false, meta: { title: translate('Home') } } } ]

apps/demo/src/app/app.routes.ts

OAUTH_ROUTES
Type : []
Default value : [ { path: 'auth/facebook', component: AuthEmptyPageComponent, canActivate: [OauthGuard], data: { visible: false, oauth: { provider: 'facebook', redirectTo: { ifSuccess: '/home', ifFail: '/home' } } } }, { path: 'auth/google-plus', component: AuthEmptyPageComponent, canActivate: [OauthGuard], data: { visible: false, oauth: { provider: 'google-plus', redirectTo: { ifSuccess: '/home', ifFail: '/home' } } } } ]

apps/demo/src/app/pages/entities-page/permissions-frame/permissions-frame.routes.ts

PERMISSIONS_FRAME_ROUTES
Type : []
Default value : [ { path: '', component: PermissionsFrameComponent, canActivate: [MetaGuard], data: { name: 'permissions', meta: { title: translate('Permissions'), description: translate('Permissions frame') } } } ]

apps/demo/src/app/pages/account-page/profile-frame/profile-frame.routes.ts

PROFILE_FRAME_ROUTES
Type : []
Default value : [ { path: '', component: ProfileFrameComponent, canActivate: [PermissionsGuard, MetaGuard], data: { name: 'profile', permissions: { only: 'read_profile-frame', redirectTo: '/home' }, meta: { title: translate('Profile'), description: translate('Profile frame') } } } ]

apps/demo/src/app/pages/entities-page/projects-frame/projects-frame.routes.ts

PROJECTS_FRAME_ROUTES
Type : []
Default value : [ { path: '', component: ProjectsFrameComponent, canActivate: [MetaGuard], data: { name: 'projects', meta: { title: translate('Projects'), description: translate('Projects frame') } } } ]

apps/demo/src/app/pages/projects-page/projects-page.routes.ts

PROJECTS_PAGE_ROUTES
Type : []
Default value : [ { path: '', component: ProjectsPageComponent, canActivate: [MetaGuard], data: { name: 'projects', meta: { title: translate('Projects'), description: translate('Projects page') } } } ]

apps/demo/src/app/pages/home-page/home-page.component.ts

require
Type : any

apps/demo/src/app/i18n/ru.i18n.ts

RuI18n
Type : object
Default value : { 'Rucken: Todo': 'Rucken: Список задач', 'Core with UI for web todo application maked on Angular7+ based on Rucken template': 'Ядро с пользовательским интерфейсом для веб-приложения "Список задач", созданного на Angular 7+ на основе шаблона Rucken', Russian: 'Русский', 'Demo users:': 'Демо пользователи:', 'user with admin group: admin@admin.com, password: 12345678': 'с группой "Администратор": admin@admin.com, пароль: 12345678', 'user with user group: user1@user1.com, password: 12345678': 'с группой "Пользователь": user1@user1.com, пароль: 12345678', 'user with user group: user2@user2.com, password: 12345678': 'с группой "Пользователь": user2@user2.com, пароль: 12345678', 'Sign in with Facebook': 'Вход через Facebook', 'Sign in with Google+': 'Вход через Google+', Account: 'Личный кабинет', 'Account page': 'Личный кабинет', Profile: 'Профиль', 'Profile frame': 'Страница профиля', Administration: 'Администрирование', 'Administration page': 'Страница администрирования', 'Content types': 'Типы содержимого', 'Content types frame': 'Страница типов содержимых', Entities: 'Сущности', 'Entities page': 'Страница сущностей', Groups: 'Группы', 'Groups frame': 'Страница групп', Permissions: 'Разрешения', 'Permissions frame': 'Страница разрешений', Projects: 'Проекты', 'Projects frame': 'Проекты', Statuses: 'Статусы', 'Statuses frame': 'Статусы', Tasks: 'Задачи', 'Tasks frame': 'Задачи', Users: 'Пользователи', 'Users frame': 'Страница пользователей', Home: 'Домашняя страница', 'Projects page': 'Проекты', Themes: 'Темы', 'Themes page': 'Страница тем', Update: 'Изменить', 'Tasks of project': 'Задачи проекта', Close: 'Закрыть', English: 'Английский', 'Your session has expired, please re-login': 'Ваша сессия истекла. Пожалуйста, авторизуйтесь снова, чтобы продолжить работу', No: 'Нет', Todo: 'Список задач', 'Core with Admin UI for web and native application maked on Angular7+': 'Ядро с пользовательским интерфейсом администратора для веб и нативных приложений, сделанных на Angular7 +', 'Sign out': 'Выйти', 'Do you really want to leave?': 'Вы действительно хотите выйти?', Yes: 'Да', Authorization: 'Авторизация', 'Sign in': 'Войти' }

apps/demo/src/app/pages/entities-page/statuses-frame/statuses-frame.routes.ts

STATUSES_FRAME_ROUTES
Type : []
Default value : [ { path: '', component: StatusesFrameComponent, canActivate: [MetaGuard], data: { name: 'statuses', meta: { title: translate('Statuses'), description: translate('Statuses frame') } } } ]

apps/demo/src/app/pages/entities-page/tasks-frame/tasks-frame.routes.ts

TASKS_FRAME_ROUTES
Type : []
Default value : [ { path: '', component: TasksFrameComponent, canActivate: [MetaGuard], data: { name: 'tasks', meta: { title: translate('Tasks'), description: translate('Tasks frame') } } } ]

apps/demo/src/app/pages/themes-page/themes-page.routes.ts

THEMES_PAGE_ROUTES
Type : []
Default value : [ { path: '', component: ThemesPageComponent, canActivate: [MetaGuard], data: { name: 'themes', meta: { title: translate('Themes'), description: translate('Themes page') } } } ]

apps/demo/src/app/pages/entities-page/users-frame/users-frame.routes.ts

USERS_FRAME_ROUTES
Type : []
Default value : [ { path: '', component: UsersFrameComponent, canActivate: [MetaGuard], data: { name: 'users', meta: { title: translate('Users'), description: translate('Users frame') } } } ]

result-matching ""

    No results matching ""