├── README.md ├── post-mgmt-v17 ├── .editorconfig ├── .gitignore ├── .vscode │ ├── extensions.json │ ├── launch.json │ ├── settings.json │ └── tasks.json ├── README.md ├── angular.json ├── package.json ├── src │ ├── app │ │ ├── app-data.ts │ │ ├── app.component.css │ │ ├── app.component.html │ │ ├── app.component.ts │ │ ├── app.config.ts │ │ ├── app.routes.ts │ │ ├── post-categories │ │ │ ├── post-category-data.ts │ │ │ ├── post-category.service.ts │ │ │ └── post-category.ts │ │ ├── posts-for-user │ │ │ ├── posts-for-user.component.css │ │ │ ├── posts-for-user.component.html │ │ │ └── posts-for-user.component.ts │ │ ├── posts-groupby │ │ │ ├── posts-groupby.component.css │ │ │ ├── posts-groupby.component.html │ │ │ └── posts-groupby.component.ts │ │ ├── posts │ │ │ ├── post-data.ts │ │ │ ├── post-list.component.css │ │ │ ├── post-list.component.html │ │ │ ├── post-list.component.ts │ │ │ ├── post.service.ts │ │ │ └── post.ts │ │ ├── todos │ │ │ ├── todo.service.ts │ │ │ └── todo.ts │ │ └── users │ │ │ ├── user-data.ts │ │ │ ├── user.service.ts │ │ │ └── user.ts │ ├── assets │ │ └── .gitkeep │ ├── favicon.ico │ ├── index.html │ ├── main.ts │ └── styles.css ├── tsconfig.app.json ├── tsconfig.json └── tsconfig.spec.json ├── post-mgmt ├── .editorconfig ├── .gitignore ├── .vscode │ ├── extensions.json │ ├── launch.json │ ├── settings.json │ └── tasks.json ├── README.md ├── angular.json ├── package-lock.json ├── package.json ├── src │ ├── app │ │ ├── app-data.ts │ │ ├── app-routing.module.ts │ │ ├── app.component.css │ │ ├── app.component.html │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ ├── post-categories │ │ │ ├── post-category-data.ts │ │ │ ├── post-category.service.ts │ │ │ └── post-category.ts │ │ ├── posts-for-user │ │ │ ├── posts-for-user.component.css │ │ │ ├── posts-for-user.component.html │ │ │ └── posts-for-user.component.ts │ │ ├── posts-groupby │ │ │ ├── posts-groupby.component.css │ │ │ ├── posts-groupby.component.html │ │ │ └── posts-groupby.component.ts │ │ ├── posts │ │ │ ├── post-data.ts │ │ │ ├── post-list.component.css │ │ │ ├── post-list.component.html │ │ │ ├── post-list.component.ts │ │ │ ├── post.service.ts │ │ │ └── post.ts │ │ ├── todos │ │ │ ├── todo.service.ts │ │ │ └── todo.ts │ │ └── users │ │ │ ├── user-data.ts │ │ │ ├── user.service.ts │ │ │ └── user.ts │ ├── assets │ │ └── .gitkeep │ ├── favicon.ico │ ├── index.html │ ├── main.ts │ └── styles.css ├── tsconfig.app.json ├── tsconfig.json └── tsconfig.spec.json ├── post-simple ├── .browserslistrc ├── .editorconfig ├── .gitignore ├── .vscode │ ├── extensions.json │ ├── launch.json │ ├── settings.json │ └── tasks.json ├── README.md ├── angular.json ├── karma.conf.js ├── package-lock.json ├── package.json ├── src │ ├── app │ │ ├── app.component.css │ │ ├── app.component.html │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ ├── user-procedural │ │ │ ├── user-procedural.component.css │ │ │ ├── user-procedural.component.html │ │ │ ├── user-procedural.component.ts │ │ │ └── user-procedural.service.ts │ │ └── user │ │ │ ├── user.component.css │ │ │ ├── user.component.html │ │ │ ├── user.component.ts │ │ │ └── user.service.ts │ ├── assets │ │ └── .gitkeep │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ ├── favicon.ico │ ├── index.html │ ├── main.ts │ ├── polyfills.ts │ ├── styles.css │ └── test.ts ├── tsconfig.app.json ├── tsconfig.json └── tsconfig.spec.json └── posts-exceptions ├── .editorconfig ├── .gitignore ├── .vscode ├── extensions.json ├── launch.json ├── settings.json └── tasks.json ├── README.md ├── angular.json ├── package-lock.json ├── package.json ├── src ├── app │ ├── app.component.css │ ├── app.component.html │ ├── app.component.spec.ts │ ├── app.component.ts │ ├── app.module.ts │ └── user │ │ ├── all-users │ │ ├── all-users.component.css │ │ ├── all-users.component.html │ │ ├── all-users.component.ts │ │ └── all-users.service.ts │ │ ├── single-user-with-message │ │ ├── single-user-with-message.component.css │ │ ├── single-user-with-message.component.html │ │ ├── single-user-with-message.component.ts │ │ └── single-user-with-message.service.ts │ │ ├── single-user │ │ ├── single-user.component.css │ │ ├── single-user.component.html │ │ ├── single-user.component.ts │ │ └── user.service.ts │ │ ├── user.component.css │ │ ├── user.component.html │ │ ├── user.component.ts │ │ ├── user.interceptor.ts │ │ └── user.ts ├── assets │ └── .gitkeep ├── favicon.ico ├── index.html ├── main.ts └── styles.css ├── tsconfig.app.json ├── tsconfig.json └── tsconfig.spec.json /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/README.md -------------------------------------------------------------------------------- /post-mgmt-v17/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/post-mgmt-v17/.editorconfig -------------------------------------------------------------------------------- /post-mgmt-v17/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/post-mgmt-v17/.gitignore -------------------------------------------------------------------------------- /post-mgmt-v17/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/post-mgmt-v17/.vscode/extensions.json -------------------------------------------------------------------------------- /post-mgmt-v17/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/post-mgmt-v17/.vscode/launch.json -------------------------------------------------------------------------------- /post-mgmt-v17/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/post-mgmt-v17/.vscode/settings.json -------------------------------------------------------------------------------- /post-mgmt-v17/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/post-mgmt-v17/.vscode/tasks.json -------------------------------------------------------------------------------- /post-mgmt-v17/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/post-mgmt-v17/README.md -------------------------------------------------------------------------------- /post-mgmt-v17/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/post-mgmt-v17/angular.json -------------------------------------------------------------------------------- /post-mgmt-v17/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/post-mgmt-v17/package.json -------------------------------------------------------------------------------- /post-mgmt-v17/src/app/app-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/post-mgmt-v17/src/app/app-data.ts -------------------------------------------------------------------------------- /post-mgmt-v17/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /post-mgmt-v17/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/post-mgmt-v17/src/app/app.component.html -------------------------------------------------------------------------------- /post-mgmt-v17/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/post-mgmt-v17/src/app/app.component.ts -------------------------------------------------------------------------------- /post-mgmt-v17/src/app/app.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/post-mgmt-v17/src/app/app.config.ts -------------------------------------------------------------------------------- /post-mgmt-v17/src/app/app.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/post-mgmt-v17/src/app/app.routes.ts -------------------------------------------------------------------------------- /post-mgmt-v17/src/app/post-categories/post-category-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/post-mgmt-v17/src/app/post-categories/post-category-data.ts -------------------------------------------------------------------------------- /post-mgmt-v17/src/app/post-categories/post-category.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/post-mgmt-v17/src/app/post-categories/post-category.service.ts -------------------------------------------------------------------------------- /post-mgmt-v17/src/app/post-categories/post-category.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/post-mgmt-v17/src/app/post-categories/post-category.ts -------------------------------------------------------------------------------- /post-mgmt-v17/src/app/posts-for-user/posts-for-user.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /post-mgmt-v17/src/app/posts-for-user/posts-for-user.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/post-mgmt-v17/src/app/posts-for-user/posts-for-user.component.html -------------------------------------------------------------------------------- /post-mgmt-v17/src/app/posts-for-user/posts-for-user.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/post-mgmt-v17/src/app/posts-for-user/posts-for-user.component.ts -------------------------------------------------------------------------------- /post-mgmt-v17/src/app/posts-groupby/posts-groupby.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /post-mgmt-v17/src/app/posts-groupby/posts-groupby.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/post-mgmt-v17/src/app/posts-groupby/posts-groupby.component.html -------------------------------------------------------------------------------- /post-mgmt-v17/src/app/posts-groupby/posts-groupby.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/post-mgmt-v17/src/app/posts-groupby/posts-groupby.component.ts -------------------------------------------------------------------------------- /post-mgmt-v17/src/app/posts/post-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/post-mgmt-v17/src/app/posts/post-data.ts -------------------------------------------------------------------------------- /post-mgmt-v17/src/app/posts/post-list.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /post-mgmt-v17/src/app/posts/post-list.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/post-mgmt-v17/src/app/posts/post-list.component.html -------------------------------------------------------------------------------- /post-mgmt-v17/src/app/posts/post-list.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/post-mgmt-v17/src/app/posts/post-list.component.ts -------------------------------------------------------------------------------- /post-mgmt-v17/src/app/posts/post.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/post-mgmt-v17/src/app/posts/post.service.ts -------------------------------------------------------------------------------- /post-mgmt-v17/src/app/posts/post.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/post-mgmt-v17/src/app/posts/post.ts -------------------------------------------------------------------------------- /post-mgmt-v17/src/app/todos/todo.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/post-mgmt-v17/src/app/todos/todo.service.ts -------------------------------------------------------------------------------- /post-mgmt-v17/src/app/todos/todo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/post-mgmt-v17/src/app/todos/todo.ts -------------------------------------------------------------------------------- /post-mgmt-v17/src/app/users/user-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/post-mgmt-v17/src/app/users/user-data.ts -------------------------------------------------------------------------------- /post-mgmt-v17/src/app/users/user.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/post-mgmt-v17/src/app/users/user.service.ts -------------------------------------------------------------------------------- /post-mgmt-v17/src/app/users/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/post-mgmt-v17/src/app/users/user.ts -------------------------------------------------------------------------------- /post-mgmt-v17/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /post-mgmt-v17/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/post-mgmt-v17/src/favicon.ico -------------------------------------------------------------------------------- /post-mgmt-v17/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/post-mgmt-v17/src/index.html -------------------------------------------------------------------------------- /post-mgmt-v17/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/post-mgmt-v17/src/main.ts -------------------------------------------------------------------------------- /post-mgmt-v17/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/post-mgmt-v17/src/styles.css -------------------------------------------------------------------------------- /post-mgmt-v17/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/post-mgmt-v17/tsconfig.app.json -------------------------------------------------------------------------------- /post-mgmt-v17/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/post-mgmt-v17/tsconfig.json -------------------------------------------------------------------------------- /post-mgmt-v17/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/post-mgmt-v17/tsconfig.spec.json -------------------------------------------------------------------------------- /post-mgmt/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/post-mgmt/.editorconfig -------------------------------------------------------------------------------- /post-mgmt/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/post-mgmt/.gitignore -------------------------------------------------------------------------------- /post-mgmt/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/post-mgmt/.vscode/extensions.json -------------------------------------------------------------------------------- /post-mgmt/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/post-mgmt/.vscode/launch.json -------------------------------------------------------------------------------- /post-mgmt/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/post-mgmt/.vscode/settings.json -------------------------------------------------------------------------------- /post-mgmt/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/post-mgmt/.vscode/tasks.json -------------------------------------------------------------------------------- /post-mgmt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/post-mgmt/README.md -------------------------------------------------------------------------------- /post-mgmt/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/post-mgmt/angular.json -------------------------------------------------------------------------------- /post-mgmt/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/post-mgmt/package-lock.json -------------------------------------------------------------------------------- /post-mgmt/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/post-mgmt/package.json -------------------------------------------------------------------------------- /post-mgmt/src/app/app-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/post-mgmt/src/app/app-data.ts -------------------------------------------------------------------------------- /post-mgmt/src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/post-mgmt/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /post-mgmt/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /post-mgmt/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/post-mgmt/src/app/app.component.html -------------------------------------------------------------------------------- /post-mgmt/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/post-mgmt/src/app/app.component.ts -------------------------------------------------------------------------------- /post-mgmt/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/post-mgmt/src/app/app.module.ts -------------------------------------------------------------------------------- /post-mgmt/src/app/post-categories/post-category-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/post-mgmt/src/app/post-categories/post-category-data.ts -------------------------------------------------------------------------------- /post-mgmt/src/app/post-categories/post-category.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/post-mgmt/src/app/post-categories/post-category.service.ts -------------------------------------------------------------------------------- /post-mgmt/src/app/post-categories/post-category.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/post-mgmt/src/app/post-categories/post-category.ts -------------------------------------------------------------------------------- /post-mgmt/src/app/posts-for-user/posts-for-user.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /post-mgmt/src/app/posts-for-user/posts-for-user.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/post-mgmt/src/app/posts-for-user/posts-for-user.component.html -------------------------------------------------------------------------------- /post-mgmt/src/app/posts-for-user/posts-for-user.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/post-mgmt/src/app/posts-for-user/posts-for-user.component.ts -------------------------------------------------------------------------------- /post-mgmt/src/app/posts-groupby/posts-groupby.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /post-mgmt/src/app/posts-groupby/posts-groupby.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/post-mgmt/src/app/posts-groupby/posts-groupby.component.html -------------------------------------------------------------------------------- /post-mgmt/src/app/posts-groupby/posts-groupby.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/post-mgmt/src/app/posts-groupby/posts-groupby.component.ts -------------------------------------------------------------------------------- /post-mgmt/src/app/posts/post-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/post-mgmt/src/app/posts/post-data.ts -------------------------------------------------------------------------------- /post-mgmt/src/app/posts/post-list.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /post-mgmt/src/app/posts/post-list.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/post-mgmt/src/app/posts/post-list.component.html -------------------------------------------------------------------------------- /post-mgmt/src/app/posts/post-list.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/post-mgmt/src/app/posts/post-list.component.ts -------------------------------------------------------------------------------- /post-mgmt/src/app/posts/post.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/post-mgmt/src/app/posts/post.service.ts -------------------------------------------------------------------------------- /post-mgmt/src/app/posts/post.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/post-mgmt/src/app/posts/post.ts -------------------------------------------------------------------------------- /post-mgmt/src/app/todos/todo.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/post-mgmt/src/app/todos/todo.service.ts -------------------------------------------------------------------------------- /post-mgmt/src/app/todos/todo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/post-mgmt/src/app/todos/todo.ts -------------------------------------------------------------------------------- /post-mgmt/src/app/users/user-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/post-mgmt/src/app/users/user-data.ts -------------------------------------------------------------------------------- /post-mgmt/src/app/users/user.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/post-mgmt/src/app/users/user.service.ts -------------------------------------------------------------------------------- /post-mgmt/src/app/users/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/post-mgmt/src/app/users/user.ts -------------------------------------------------------------------------------- /post-mgmt/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /post-mgmt/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/post-mgmt/src/favicon.ico -------------------------------------------------------------------------------- /post-mgmt/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/post-mgmt/src/index.html -------------------------------------------------------------------------------- /post-mgmt/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/post-mgmt/src/main.ts -------------------------------------------------------------------------------- /post-mgmt/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/post-mgmt/src/styles.css -------------------------------------------------------------------------------- /post-mgmt/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/post-mgmt/tsconfig.app.json -------------------------------------------------------------------------------- /post-mgmt/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/post-mgmt/tsconfig.json -------------------------------------------------------------------------------- /post-mgmt/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/post-mgmt/tsconfig.spec.json -------------------------------------------------------------------------------- /post-simple/.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/post-simple/.browserslistrc -------------------------------------------------------------------------------- /post-simple/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/post-simple/.editorconfig -------------------------------------------------------------------------------- /post-simple/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/post-simple/.gitignore -------------------------------------------------------------------------------- /post-simple/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/post-simple/.vscode/extensions.json -------------------------------------------------------------------------------- /post-simple/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/post-simple/.vscode/launch.json -------------------------------------------------------------------------------- /post-simple/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/post-simple/.vscode/settings.json -------------------------------------------------------------------------------- /post-simple/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/post-simple/.vscode/tasks.json -------------------------------------------------------------------------------- /post-simple/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/post-simple/README.md -------------------------------------------------------------------------------- /post-simple/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/post-simple/angular.json -------------------------------------------------------------------------------- /post-simple/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/post-simple/karma.conf.js -------------------------------------------------------------------------------- /post-simple/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/post-simple/package-lock.json -------------------------------------------------------------------------------- /post-simple/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/post-simple/package.json -------------------------------------------------------------------------------- /post-simple/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /post-simple/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/post-simple/src/app/app.component.html -------------------------------------------------------------------------------- /post-simple/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/post-simple/src/app/app.component.ts -------------------------------------------------------------------------------- /post-simple/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/post-simple/src/app/app.module.ts -------------------------------------------------------------------------------- /post-simple/src/app/user-procedural/user-procedural.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /post-simple/src/app/user-procedural/user-procedural.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/post-simple/src/app/user-procedural/user-procedural.component.html -------------------------------------------------------------------------------- /post-simple/src/app/user-procedural/user-procedural.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/post-simple/src/app/user-procedural/user-procedural.component.ts -------------------------------------------------------------------------------- /post-simple/src/app/user-procedural/user-procedural.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/post-simple/src/app/user-procedural/user-procedural.service.ts -------------------------------------------------------------------------------- /post-simple/src/app/user/user.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /post-simple/src/app/user/user.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/post-simple/src/app/user/user.component.html -------------------------------------------------------------------------------- /post-simple/src/app/user/user.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/post-simple/src/app/user/user.component.ts -------------------------------------------------------------------------------- /post-simple/src/app/user/user.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/post-simple/src/app/user/user.service.ts -------------------------------------------------------------------------------- /post-simple/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /post-simple/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /post-simple/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/post-simple/src/environments/environment.ts -------------------------------------------------------------------------------- /post-simple/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/post-simple/src/favicon.ico -------------------------------------------------------------------------------- /post-simple/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/post-simple/src/index.html -------------------------------------------------------------------------------- /post-simple/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/post-simple/src/main.ts -------------------------------------------------------------------------------- /post-simple/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/post-simple/src/polyfills.ts -------------------------------------------------------------------------------- /post-simple/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/post-simple/src/styles.css -------------------------------------------------------------------------------- /post-simple/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/post-simple/src/test.ts -------------------------------------------------------------------------------- /post-simple/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/post-simple/tsconfig.app.json -------------------------------------------------------------------------------- /post-simple/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/post-simple/tsconfig.json -------------------------------------------------------------------------------- /post-simple/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/post-simple/tsconfig.spec.json -------------------------------------------------------------------------------- /posts-exceptions/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/posts-exceptions/.editorconfig -------------------------------------------------------------------------------- /posts-exceptions/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/posts-exceptions/.gitignore -------------------------------------------------------------------------------- /posts-exceptions/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/posts-exceptions/.vscode/extensions.json -------------------------------------------------------------------------------- /posts-exceptions/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/posts-exceptions/.vscode/launch.json -------------------------------------------------------------------------------- /posts-exceptions/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/posts-exceptions/.vscode/settings.json -------------------------------------------------------------------------------- /posts-exceptions/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/posts-exceptions/.vscode/tasks.json -------------------------------------------------------------------------------- /posts-exceptions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/posts-exceptions/README.md -------------------------------------------------------------------------------- /posts-exceptions/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/posts-exceptions/angular.json -------------------------------------------------------------------------------- /posts-exceptions/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/posts-exceptions/package-lock.json -------------------------------------------------------------------------------- /posts-exceptions/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/posts-exceptions/package.json -------------------------------------------------------------------------------- /posts-exceptions/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /posts-exceptions/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/posts-exceptions/src/app/app.component.html -------------------------------------------------------------------------------- /posts-exceptions/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/posts-exceptions/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /posts-exceptions/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/posts-exceptions/src/app/app.component.ts -------------------------------------------------------------------------------- /posts-exceptions/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/posts-exceptions/src/app/app.module.ts -------------------------------------------------------------------------------- /posts-exceptions/src/app/user/all-users/all-users.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /posts-exceptions/src/app/user/all-users/all-users.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/posts-exceptions/src/app/user/all-users/all-users.component.html -------------------------------------------------------------------------------- /posts-exceptions/src/app/user/all-users/all-users.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/posts-exceptions/src/app/user/all-users/all-users.component.ts -------------------------------------------------------------------------------- /posts-exceptions/src/app/user/all-users/all-users.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/posts-exceptions/src/app/user/all-users/all-users.service.ts -------------------------------------------------------------------------------- /posts-exceptions/src/app/user/single-user-with-message/single-user-with-message.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /posts-exceptions/src/app/user/single-user-with-message/single-user-with-message.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/posts-exceptions/src/app/user/single-user-with-message/single-user-with-message.component.html -------------------------------------------------------------------------------- /posts-exceptions/src/app/user/single-user-with-message/single-user-with-message.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/posts-exceptions/src/app/user/single-user-with-message/single-user-with-message.component.ts -------------------------------------------------------------------------------- /posts-exceptions/src/app/user/single-user-with-message/single-user-with-message.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/posts-exceptions/src/app/user/single-user-with-message/single-user-with-message.service.ts -------------------------------------------------------------------------------- /posts-exceptions/src/app/user/single-user/single-user.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /posts-exceptions/src/app/user/single-user/single-user.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/posts-exceptions/src/app/user/single-user/single-user.component.html -------------------------------------------------------------------------------- /posts-exceptions/src/app/user/single-user/single-user.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/posts-exceptions/src/app/user/single-user/single-user.component.ts -------------------------------------------------------------------------------- /posts-exceptions/src/app/user/single-user/user.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/posts-exceptions/src/app/user/single-user/user.service.ts -------------------------------------------------------------------------------- /posts-exceptions/src/app/user/user.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /posts-exceptions/src/app/user/user.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/posts-exceptions/src/app/user/user.component.html -------------------------------------------------------------------------------- /posts-exceptions/src/app/user/user.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/posts-exceptions/src/app/user/user.component.ts -------------------------------------------------------------------------------- /posts-exceptions/src/app/user/user.interceptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/posts-exceptions/src/app/user/user.interceptor.ts -------------------------------------------------------------------------------- /posts-exceptions/src/app/user/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/posts-exceptions/src/app/user/user.ts -------------------------------------------------------------------------------- /posts-exceptions/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /posts-exceptions/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/posts-exceptions/src/favicon.ico -------------------------------------------------------------------------------- /posts-exceptions/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/posts-exceptions/src/index.html -------------------------------------------------------------------------------- /posts-exceptions/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/posts-exceptions/src/main.ts -------------------------------------------------------------------------------- /posts-exceptions/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/posts-exceptions/src/styles.css -------------------------------------------------------------------------------- /posts-exceptions/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/posts-exceptions/tsconfig.app.json -------------------------------------------------------------------------------- /posts-exceptions/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/posts-exceptions/tsconfig.json -------------------------------------------------------------------------------- /posts-exceptions/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeborahK/Angular-posts/HEAD/posts-exceptions/tsconfig.spec.json --------------------------------------------------------------------------------