presidential-innovation-fellows/code-gov-web

View on GitHub
src/app/components/policy-guide/docs/compliance/compliance-inventory-code/compliance-inventory-code.component.ts

Summary

Maintainability
A
2 hrs
Test Coverage
import { Component } from '@angular/core';
import { SeoService } from '../../../../../services/seo';

@Component({
  selector: 'inventory-code',
  template: require('./compliance-inventory-code.template.html')
})

export class ComplianceInventoryCodeComponent {
  constructor(private seoService: SeoService) {
    seoService.setTitle('Creating your enterprise code inventory', true);
    seoService.setMetaDescription(
      'Learn how to create your enterprise code inventory and read up on the ' +
      'code.json metadata schema.'
    );
    seoService.setMetaRobots('Index, Follow');
  }
}