├── README.md └── apiBooks ├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .gitignore ├── .yo-rc.json ├── README.md ├── client ├── .editorconfig ├── .gitignore ├── .prettierrc.js ├── README.md ├── angular.json ├── e2e │ ├── protractor.conf.js │ ├── src │ │ ├── app.e2e-spec.ts │ │ └── app.po.ts │ └── tsconfig.e2e.json ├── package-lock.json ├── package.json ├── src │ ├── app │ │ ├── app-routing.module.ts │ │ ├── app.component.css │ │ ├── app.component.html │ │ ├── app.component.spec.ts │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ ├── components │ │ │ ├── admin │ │ │ │ └── list-books │ │ │ │ │ ├── list-books.component.css │ │ │ │ │ ├── list-books.component.html │ │ │ │ │ ├── list-books.component.spec.ts │ │ │ │ │ └── list-books.component.ts │ │ │ ├── details-book │ │ │ │ ├── details-book.component.css │ │ │ │ ├── details-book.component.html │ │ │ │ ├── details-book.component.spec.ts │ │ │ │ └── details-book.component.ts │ │ │ ├── hero │ │ │ │ ├── hero.component.css │ │ │ │ ├── hero.component.html │ │ │ │ ├── hero.component.spec.ts │ │ │ │ └── hero.component.ts │ │ │ ├── home │ │ │ │ ├── home.component.css │ │ │ │ ├── home.component.html │ │ │ │ ├── home.component.spec.ts │ │ │ │ └── home.component.ts │ │ │ ├── modal │ │ │ │ ├── modal.component.css │ │ │ │ ├── modal.component.html │ │ │ │ ├── modal.component.spec.ts │ │ │ │ └── modal.component.ts │ │ │ ├── navbar │ │ │ │ ├── navbar.component.css │ │ │ │ ├── navbar.component.html │ │ │ │ ├── navbar.component.spec.ts │ │ │ │ └── navbar.component.ts │ │ │ ├── offers │ │ │ │ ├── offers.component.css │ │ │ │ ├── offers.component.html │ │ │ │ ├── offers.component.spec.ts │ │ │ │ └── offers.component.ts │ │ │ ├── page404 │ │ │ │ ├── page404.component.css │ │ │ │ ├── page404.component.html │ │ │ │ ├── page404.component.spec.ts │ │ │ │ └── page404.component.ts │ │ │ └── user │ │ │ │ ├── login │ │ │ │ ├── login.component.css │ │ │ │ ├── login.component.html │ │ │ │ ├── login.component.spec.ts │ │ │ │ └── login.component.ts │ │ │ │ ├── profile │ │ │ │ ├── profile.component.css │ │ │ │ ├── profile.component.html │ │ │ │ ├── profile.component.spec.ts │ │ │ │ └── profile.component.ts │ │ │ │ └── register │ │ │ │ ├── register.component.css │ │ │ │ ├── register.component.html │ │ │ │ ├── register.component.spec.ts │ │ │ │ └── register.component.ts │ │ ├── guards │ │ │ ├── auth.guard.spec.ts │ │ │ └── auth.guard.ts │ │ ├── models │ │ │ ├── book-interface.ts │ │ │ └── user-interface.ts │ │ ├── pipes │ │ │ └── truncate-text.pipe.ts │ │ └── services │ │ │ ├── auth.service.spec.ts │ │ │ ├── auth.service.ts │ │ │ ├── data-api.service.spec.ts │ │ │ └── data-api.service.ts │ ├── assets │ │ ├── .gitkeep │ │ ├── check-user.png │ │ ├── new-user.png │ │ └── user-login.png │ ├── browserslist │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ ├── favicon.ico │ ├── index.html │ ├── karma.conf.js │ ├── main.ts │ ├── polyfills.ts │ ├── styles.css │ ├── test.ts │ ├── tsconfig.app.json │ ├── tsconfig.spec.json │ └── tslint.json ├── tsconfig.json └── tslint.json ├── common └── models │ ├── book.js │ └── book.json ├── package-lock.json ├── package.json └── server ├── boot ├── authentication.js └── root.js ├── component-config.json ├── config.json ├── datasources.json ├── middleware.development.json ├── middleware.json ├── model-config.json └── server.js /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domini-code/loopback3_angular6_bootstrap4/HEAD/README.md -------------------------------------------------------------------------------- /apiBooks/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domini-code/loopback3_angular6_bootstrap4/HEAD/apiBooks/.editorconfig -------------------------------------------------------------------------------- /apiBooks/.eslintignore: -------------------------------------------------------------------------------- 1 | /client/ -------------------------------------------------------------------------------- /apiBooks/.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "loopback" 3 | } -------------------------------------------------------------------------------- /apiBooks/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domini-code/loopback3_angular6_bootstrap4/HEAD/apiBooks/.gitignore -------------------------------------------------------------------------------- /apiBooks/.yo-rc.json: -------------------------------------------------------------------------------- 1 | { 2 | "generator-loopback": {} 3 | } -------------------------------------------------------------------------------- /apiBooks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domini-code/loopback3_angular6_bootstrap4/HEAD/apiBooks/README.md -------------------------------------------------------------------------------- /apiBooks/client/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domini-code/loopback3_angular6_bootstrap4/HEAD/apiBooks/client/.editorconfig -------------------------------------------------------------------------------- /apiBooks/client/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domini-code/loopback3_angular6_bootstrap4/HEAD/apiBooks/client/.gitignore -------------------------------------------------------------------------------- /apiBooks/client/.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domini-code/loopback3_angular6_bootstrap4/HEAD/apiBooks/client/.prettierrc.js -------------------------------------------------------------------------------- /apiBooks/client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domini-code/loopback3_angular6_bootstrap4/HEAD/apiBooks/client/README.md -------------------------------------------------------------------------------- /apiBooks/client/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domini-code/loopback3_angular6_bootstrap4/HEAD/apiBooks/client/angular.json -------------------------------------------------------------------------------- /apiBooks/client/e2e/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domini-code/loopback3_angular6_bootstrap4/HEAD/apiBooks/client/e2e/protractor.conf.js -------------------------------------------------------------------------------- /apiBooks/client/e2e/src/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domini-code/loopback3_angular6_bootstrap4/HEAD/apiBooks/client/e2e/src/app.e2e-spec.ts -------------------------------------------------------------------------------- /apiBooks/client/e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domini-code/loopback3_angular6_bootstrap4/HEAD/apiBooks/client/e2e/src/app.po.ts -------------------------------------------------------------------------------- /apiBooks/client/e2e/tsconfig.e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domini-code/loopback3_angular6_bootstrap4/HEAD/apiBooks/client/e2e/tsconfig.e2e.json -------------------------------------------------------------------------------- /apiBooks/client/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domini-code/loopback3_angular6_bootstrap4/HEAD/apiBooks/client/package-lock.json -------------------------------------------------------------------------------- /apiBooks/client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domini-code/loopback3_angular6_bootstrap4/HEAD/apiBooks/client/package.json -------------------------------------------------------------------------------- /apiBooks/client/src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domini-code/loopback3_angular6_bootstrap4/HEAD/apiBooks/client/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /apiBooks/client/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apiBooks/client/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domini-code/loopback3_angular6_bootstrap4/HEAD/apiBooks/client/src/app/app.component.html -------------------------------------------------------------------------------- /apiBooks/client/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domini-code/loopback3_angular6_bootstrap4/HEAD/apiBooks/client/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /apiBooks/client/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domini-code/loopback3_angular6_bootstrap4/HEAD/apiBooks/client/src/app/app.component.ts -------------------------------------------------------------------------------- /apiBooks/client/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domini-code/loopback3_angular6_bootstrap4/HEAD/apiBooks/client/src/app/app.module.ts -------------------------------------------------------------------------------- /apiBooks/client/src/app/components/admin/list-books/list-books.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apiBooks/client/src/app/components/admin/list-books/list-books.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domini-code/loopback3_angular6_bootstrap4/HEAD/apiBooks/client/src/app/components/admin/list-books/list-books.component.html -------------------------------------------------------------------------------- /apiBooks/client/src/app/components/admin/list-books/list-books.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domini-code/loopback3_angular6_bootstrap4/HEAD/apiBooks/client/src/app/components/admin/list-books/list-books.component.spec.ts -------------------------------------------------------------------------------- /apiBooks/client/src/app/components/admin/list-books/list-books.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domini-code/loopback3_angular6_bootstrap4/HEAD/apiBooks/client/src/app/components/admin/list-books/list-books.component.ts -------------------------------------------------------------------------------- /apiBooks/client/src/app/components/details-book/details-book.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domini-code/loopback3_angular6_bootstrap4/HEAD/apiBooks/client/src/app/components/details-book/details-book.component.css -------------------------------------------------------------------------------- /apiBooks/client/src/app/components/details-book/details-book.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domini-code/loopback3_angular6_bootstrap4/HEAD/apiBooks/client/src/app/components/details-book/details-book.component.html -------------------------------------------------------------------------------- /apiBooks/client/src/app/components/details-book/details-book.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domini-code/loopback3_angular6_bootstrap4/HEAD/apiBooks/client/src/app/components/details-book/details-book.component.spec.ts -------------------------------------------------------------------------------- /apiBooks/client/src/app/components/details-book/details-book.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domini-code/loopback3_angular6_bootstrap4/HEAD/apiBooks/client/src/app/components/details-book/details-book.component.ts -------------------------------------------------------------------------------- /apiBooks/client/src/app/components/hero/hero.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apiBooks/client/src/app/components/hero/hero.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domini-code/loopback3_angular6_bootstrap4/HEAD/apiBooks/client/src/app/components/hero/hero.component.html -------------------------------------------------------------------------------- /apiBooks/client/src/app/components/hero/hero.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domini-code/loopback3_angular6_bootstrap4/HEAD/apiBooks/client/src/app/components/hero/hero.component.spec.ts -------------------------------------------------------------------------------- /apiBooks/client/src/app/components/hero/hero.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domini-code/loopback3_angular6_bootstrap4/HEAD/apiBooks/client/src/app/components/hero/hero.component.ts -------------------------------------------------------------------------------- /apiBooks/client/src/app/components/home/home.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domini-code/loopback3_angular6_bootstrap4/HEAD/apiBooks/client/src/app/components/home/home.component.css -------------------------------------------------------------------------------- /apiBooks/client/src/app/components/home/home.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domini-code/loopback3_angular6_bootstrap4/HEAD/apiBooks/client/src/app/components/home/home.component.html -------------------------------------------------------------------------------- /apiBooks/client/src/app/components/home/home.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domini-code/loopback3_angular6_bootstrap4/HEAD/apiBooks/client/src/app/components/home/home.component.spec.ts -------------------------------------------------------------------------------- /apiBooks/client/src/app/components/home/home.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domini-code/loopback3_angular6_bootstrap4/HEAD/apiBooks/client/src/app/components/home/home.component.ts -------------------------------------------------------------------------------- /apiBooks/client/src/app/components/modal/modal.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apiBooks/client/src/app/components/modal/modal.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domini-code/loopback3_angular6_bootstrap4/HEAD/apiBooks/client/src/app/components/modal/modal.component.html -------------------------------------------------------------------------------- /apiBooks/client/src/app/components/modal/modal.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domini-code/loopback3_angular6_bootstrap4/HEAD/apiBooks/client/src/app/components/modal/modal.component.spec.ts -------------------------------------------------------------------------------- /apiBooks/client/src/app/components/modal/modal.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domini-code/loopback3_angular6_bootstrap4/HEAD/apiBooks/client/src/app/components/modal/modal.component.ts -------------------------------------------------------------------------------- /apiBooks/client/src/app/components/navbar/navbar.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apiBooks/client/src/app/components/navbar/navbar.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domini-code/loopback3_angular6_bootstrap4/HEAD/apiBooks/client/src/app/components/navbar/navbar.component.html -------------------------------------------------------------------------------- /apiBooks/client/src/app/components/navbar/navbar.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domini-code/loopback3_angular6_bootstrap4/HEAD/apiBooks/client/src/app/components/navbar/navbar.component.spec.ts -------------------------------------------------------------------------------- /apiBooks/client/src/app/components/navbar/navbar.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domini-code/loopback3_angular6_bootstrap4/HEAD/apiBooks/client/src/app/components/navbar/navbar.component.ts -------------------------------------------------------------------------------- /apiBooks/client/src/app/components/offers/offers.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domini-code/loopback3_angular6_bootstrap4/HEAD/apiBooks/client/src/app/components/offers/offers.component.css -------------------------------------------------------------------------------- /apiBooks/client/src/app/components/offers/offers.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domini-code/loopback3_angular6_bootstrap4/HEAD/apiBooks/client/src/app/components/offers/offers.component.html -------------------------------------------------------------------------------- /apiBooks/client/src/app/components/offers/offers.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domini-code/loopback3_angular6_bootstrap4/HEAD/apiBooks/client/src/app/components/offers/offers.component.spec.ts -------------------------------------------------------------------------------- /apiBooks/client/src/app/components/offers/offers.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domini-code/loopback3_angular6_bootstrap4/HEAD/apiBooks/client/src/app/components/offers/offers.component.ts -------------------------------------------------------------------------------- /apiBooks/client/src/app/components/page404/page404.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apiBooks/client/src/app/components/page404/page404.component.html: -------------------------------------------------------------------------------- 1 |
2 | page404 works! 3 |
4 | -------------------------------------------------------------------------------- /apiBooks/client/src/app/components/page404/page404.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domini-code/loopback3_angular6_bootstrap4/HEAD/apiBooks/client/src/app/components/page404/page404.component.spec.ts -------------------------------------------------------------------------------- /apiBooks/client/src/app/components/page404/page404.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domini-code/loopback3_angular6_bootstrap4/HEAD/apiBooks/client/src/app/components/page404/page404.component.ts -------------------------------------------------------------------------------- /apiBooks/client/src/app/components/user/login/login.component.css: -------------------------------------------------------------------------------- 1 | .form-control.login-user { 2 | border: 0 solid #fff !important; 3 | } 4 | -------------------------------------------------------------------------------- /apiBooks/client/src/app/components/user/login/login.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domini-code/loopback3_angular6_bootstrap4/HEAD/apiBooks/client/src/app/components/user/login/login.component.html -------------------------------------------------------------------------------- /apiBooks/client/src/app/components/user/login/login.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domini-code/loopback3_angular6_bootstrap4/HEAD/apiBooks/client/src/app/components/user/login/login.component.spec.ts -------------------------------------------------------------------------------- /apiBooks/client/src/app/components/user/login/login.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domini-code/loopback3_angular6_bootstrap4/HEAD/apiBooks/client/src/app/components/user/login/login.component.ts -------------------------------------------------------------------------------- /apiBooks/client/src/app/components/user/profile/profile.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domini-code/loopback3_angular6_bootstrap4/HEAD/apiBooks/client/src/app/components/user/profile/profile.component.css -------------------------------------------------------------------------------- /apiBooks/client/src/app/components/user/profile/profile.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domini-code/loopback3_angular6_bootstrap4/HEAD/apiBooks/client/src/app/components/user/profile/profile.component.html -------------------------------------------------------------------------------- /apiBooks/client/src/app/components/user/profile/profile.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domini-code/loopback3_angular6_bootstrap4/HEAD/apiBooks/client/src/app/components/user/profile/profile.component.spec.ts -------------------------------------------------------------------------------- /apiBooks/client/src/app/components/user/profile/profile.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domini-code/loopback3_angular6_bootstrap4/HEAD/apiBooks/client/src/app/components/user/profile/profile.component.ts -------------------------------------------------------------------------------- /apiBooks/client/src/app/components/user/register/register.component.css: -------------------------------------------------------------------------------- 1 | .form-control.login-user { 2 | border: 0px solid #fff !important; 3 | } 4 | -------------------------------------------------------------------------------- /apiBooks/client/src/app/components/user/register/register.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domini-code/loopback3_angular6_bootstrap4/HEAD/apiBooks/client/src/app/components/user/register/register.component.html -------------------------------------------------------------------------------- /apiBooks/client/src/app/components/user/register/register.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domini-code/loopback3_angular6_bootstrap4/HEAD/apiBooks/client/src/app/components/user/register/register.component.spec.ts -------------------------------------------------------------------------------- /apiBooks/client/src/app/components/user/register/register.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domini-code/loopback3_angular6_bootstrap4/HEAD/apiBooks/client/src/app/components/user/register/register.component.ts -------------------------------------------------------------------------------- /apiBooks/client/src/app/guards/auth.guard.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domini-code/loopback3_angular6_bootstrap4/HEAD/apiBooks/client/src/app/guards/auth.guard.spec.ts -------------------------------------------------------------------------------- /apiBooks/client/src/app/guards/auth.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domini-code/loopback3_angular6_bootstrap4/HEAD/apiBooks/client/src/app/guards/auth.guard.ts -------------------------------------------------------------------------------- /apiBooks/client/src/app/models/book-interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domini-code/loopback3_angular6_bootstrap4/HEAD/apiBooks/client/src/app/models/book-interface.ts -------------------------------------------------------------------------------- /apiBooks/client/src/app/models/user-interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domini-code/loopback3_angular6_bootstrap4/HEAD/apiBooks/client/src/app/models/user-interface.ts -------------------------------------------------------------------------------- /apiBooks/client/src/app/pipes/truncate-text.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domini-code/loopback3_angular6_bootstrap4/HEAD/apiBooks/client/src/app/pipes/truncate-text.pipe.ts -------------------------------------------------------------------------------- /apiBooks/client/src/app/services/auth.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domini-code/loopback3_angular6_bootstrap4/HEAD/apiBooks/client/src/app/services/auth.service.spec.ts -------------------------------------------------------------------------------- /apiBooks/client/src/app/services/auth.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domini-code/loopback3_angular6_bootstrap4/HEAD/apiBooks/client/src/app/services/auth.service.ts -------------------------------------------------------------------------------- /apiBooks/client/src/app/services/data-api.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domini-code/loopback3_angular6_bootstrap4/HEAD/apiBooks/client/src/app/services/data-api.service.spec.ts -------------------------------------------------------------------------------- /apiBooks/client/src/app/services/data-api.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domini-code/loopback3_angular6_bootstrap4/HEAD/apiBooks/client/src/app/services/data-api.service.ts -------------------------------------------------------------------------------- /apiBooks/client/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apiBooks/client/src/assets/check-user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domini-code/loopback3_angular6_bootstrap4/HEAD/apiBooks/client/src/assets/check-user.png -------------------------------------------------------------------------------- /apiBooks/client/src/assets/new-user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domini-code/loopback3_angular6_bootstrap4/HEAD/apiBooks/client/src/assets/new-user.png -------------------------------------------------------------------------------- /apiBooks/client/src/assets/user-login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domini-code/loopback3_angular6_bootstrap4/HEAD/apiBooks/client/src/assets/user-login.png -------------------------------------------------------------------------------- /apiBooks/client/src/browserslist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domini-code/loopback3_angular6_bootstrap4/HEAD/apiBooks/client/src/browserslist -------------------------------------------------------------------------------- /apiBooks/client/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /apiBooks/client/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domini-code/loopback3_angular6_bootstrap4/HEAD/apiBooks/client/src/environments/environment.ts -------------------------------------------------------------------------------- /apiBooks/client/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domini-code/loopback3_angular6_bootstrap4/HEAD/apiBooks/client/src/favicon.ico -------------------------------------------------------------------------------- /apiBooks/client/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domini-code/loopback3_angular6_bootstrap4/HEAD/apiBooks/client/src/index.html -------------------------------------------------------------------------------- /apiBooks/client/src/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domini-code/loopback3_angular6_bootstrap4/HEAD/apiBooks/client/src/karma.conf.js -------------------------------------------------------------------------------- /apiBooks/client/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domini-code/loopback3_angular6_bootstrap4/HEAD/apiBooks/client/src/main.ts -------------------------------------------------------------------------------- /apiBooks/client/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domini-code/loopback3_angular6_bootstrap4/HEAD/apiBooks/client/src/polyfills.ts -------------------------------------------------------------------------------- /apiBooks/client/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domini-code/loopback3_angular6_bootstrap4/HEAD/apiBooks/client/src/styles.css -------------------------------------------------------------------------------- /apiBooks/client/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domini-code/loopback3_angular6_bootstrap4/HEAD/apiBooks/client/src/test.ts -------------------------------------------------------------------------------- /apiBooks/client/src/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domini-code/loopback3_angular6_bootstrap4/HEAD/apiBooks/client/src/tsconfig.app.json -------------------------------------------------------------------------------- /apiBooks/client/src/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domini-code/loopback3_angular6_bootstrap4/HEAD/apiBooks/client/src/tsconfig.spec.json -------------------------------------------------------------------------------- /apiBooks/client/src/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domini-code/loopback3_angular6_bootstrap4/HEAD/apiBooks/client/src/tslint.json -------------------------------------------------------------------------------- /apiBooks/client/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domini-code/loopback3_angular6_bootstrap4/HEAD/apiBooks/client/tsconfig.json -------------------------------------------------------------------------------- /apiBooks/client/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domini-code/loopback3_angular6_bootstrap4/HEAD/apiBooks/client/tslint.json -------------------------------------------------------------------------------- /apiBooks/common/models/book.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = function(Book) { 4 | 5 | }; 6 | -------------------------------------------------------------------------------- /apiBooks/common/models/book.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domini-code/loopback3_angular6_bootstrap4/HEAD/apiBooks/common/models/book.json -------------------------------------------------------------------------------- /apiBooks/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domini-code/loopback3_angular6_bootstrap4/HEAD/apiBooks/package-lock.json -------------------------------------------------------------------------------- /apiBooks/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domini-code/loopback3_angular6_bootstrap4/HEAD/apiBooks/package.json -------------------------------------------------------------------------------- /apiBooks/server/boot/authentication.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domini-code/loopback3_angular6_bootstrap4/HEAD/apiBooks/server/boot/authentication.js -------------------------------------------------------------------------------- /apiBooks/server/boot/root.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domini-code/loopback3_angular6_bootstrap4/HEAD/apiBooks/server/boot/root.js -------------------------------------------------------------------------------- /apiBooks/server/component-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domini-code/loopback3_angular6_bootstrap4/HEAD/apiBooks/server/component-config.json -------------------------------------------------------------------------------- /apiBooks/server/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domini-code/loopback3_angular6_bootstrap4/HEAD/apiBooks/server/config.json -------------------------------------------------------------------------------- /apiBooks/server/datasources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domini-code/loopback3_angular6_bootstrap4/HEAD/apiBooks/server/datasources.json -------------------------------------------------------------------------------- /apiBooks/server/middleware.development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domini-code/loopback3_angular6_bootstrap4/HEAD/apiBooks/server/middleware.development.json -------------------------------------------------------------------------------- /apiBooks/server/middleware.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domini-code/loopback3_angular6_bootstrap4/HEAD/apiBooks/server/middleware.json -------------------------------------------------------------------------------- /apiBooks/server/model-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domini-code/loopback3_angular6_bootstrap4/HEAD/apiBooks/server/model-config.json -------------------------------------------------------------------------------- /apiBooks/server/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domini-code/loopback3_angular6_bootstrap4/HEAD/apiBooks/server/server.js --------------------------------------------------------------------------------