import { Component, OnInit } from '@angular/core'; import { CookieService } from 'ngx-cookie-service'; @Component({ selector: 'ng-data-collection-data-collection-home', templateUrl: './data-collection-home.component.html', styleUrls: ['./data-collection-home.component.css'] }) export class DataCollectionHomeComponent implements OnInit { constructor(private cookieService: CookieService) { } ngOnInit(){ // Temparory setting the logged user id this.cookieService.set( 'LoggedUserId', '14' ); } }