12345678910111213141516171819202122232425 |
- import { Component, OnInit } from '@angular/core';
- import { ActivatedRoute } from '@angular/router';
-
- import { IPost } from 'app/shared/model/post.model';
-
- @Component({
- selector: 'jhi-post-detail',
- templateUrl: './post-detail.component.html'
- })
- export class PostDetailComponent implements OnInit {
- post: IPost;
-
- constructor(private activatedRoute: ActivatedRoute) {}
-
- ngOnInit() {
- this.activatedRoute.data.subscribe(({ post }) => {
- this.post = post;
- });
- }
-
- previousState() {
- window.history.back();
- }
- }
|