This is the codeAbility Sharing Platform! Learn more about the codeAbility Sharing Platform.

Skip to content
Snippets Groups Projects
footer.component.ts 498 B
Newer Older
import { Component, OnInit } from '@angular/core';
import { ApplicationInfoService, DeploymentInfo } from 'app/core/application/applicationInfo.service';
Lukas Kaltenbrunner's avatar
Lukas Kaltenbrunner committed

@Component({
  selector: 'jhi-footer',
  templateUrl: './footer.component.html',
})
export class FooterComponent implements OnInit {
  deploymentInfo?: DeploymentInfo;

  constructor(public applicationInfoService: ApplicationInfoService) {}
  ngOnInit(): void {
    this.deploymentInfo = this.applicationInfoService.getDeploymentInfo();
  }