Changeset 95d80e4 for src/Clients


Ignore:
Timestamp:
10/21/21 19:16:53 (3 years ago)
Author:
Стојков Марко <mst@…>
Branches:
dev
Children:
3b395c5
Parents:
9885bee
Message:

Added unit of work pattern

Location:
src/Clients/Angular/finki-chattery/src/app/shared-app
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • src/Clients/Angular/finki-chattery/src/app/shared-app/components/components.ts

    r9885bee r95d80e4  
    66import { StudentCardComponent } from './question/student-card/student-card.component';
    77
    8 export const COMPONENTS: any[] = [ButtonComponent, FormErrorComponent, FileUploadComponent, QuestionPreviewComponent, VoteComponent, StudentCardComponent];
     8export const COMPONENTS: any[] = [
     9  ButtonComponent,
     10  FormErrorComponent,
     11  FileUploadComponent,
     12  QuestionPreviewComponent,
     13  VoteComponent,
     14  StudentCardComponent
     15];
  • src/Clients/Angular/finki-chattery/src/app/shared-app/directives/directives.ts

    r9885bee r95d80e4  
    1 import { HandleInputFormErrorsDirective, HoverElevationDirective, LoaderDirective, HandleSelectFormErrorsDirective, ShareLinkDirective } from '.';
     1import {
     2  HandleInputFormErrorsDirective,
     3  HoverElevationDirective,
     4  LoaderDirective,
     5  HandleSelectFormErrorsDirective,
     6  ShareLinkDirective
     7} from '.';
    28
    3 export const DIRECTIVES: any[] = [HandleInputFormErrorsDirective, LoaderDirective, HoverElevationDirective, HandleSelectFormErrorsDirective, ShareLinkDirective];
     9export const DIRECTIVES: any[] = [
     10  HandleInputFormErrorsDirective,
     11  LoaderDirective,
     12  HoverElevationDirective,
     13  HandleSelectFormErrorsDirective,
     14  ShareLinkDirective
     15];
Note: See TracChangeset for help on using the changeset viewer.