socialnetworknews-web

A open-source Paper.li clone
git clone git://archive.git.mtrnord.blog/SocialNetworkNews/socialnetworknews-web.git
Log | Files | Refs | README | LICENSE

profile.component.ts (435B)


      1 import { Component, OnInit } from '@angular/core';
      2 import {ActivatedRoute} from '@angular/router';
      3 
      4 @Component({
      5   selector: 'app-profile',
      6   templateUrl: './profile.component.html',
      7   styleUrls: ['./profile.component.scss']
      8 })
      9 export class ProfileComponent implements OnInit {
     10   authorUUID: string;
     11 
     12   constructor(private route: ActivatedRoute) {
     13     this.authorUUID = this.route.snapshot.params.paperUUID;
     14   }
     15 
     16   ngOnInit() {
     17   }
     18 
     19 }