This repository has been archived on 2020-03-24. You can view files and clone it, but cannot push or open issues or pull requests.
quay/static/js/directives/ui/trigger-description/trigger-description.component.ts

21 lines
562 B
TypeScript
Raw Normal View History

2019-11-12 16:09:47 +00:00
import { Component, Input, Inject } from 'ng-metadata/core';
import { Trigger } from '../../../types/common.types';
/**
* A component which displays information about a build trigger.
*/
@Component({
selector: 'trigger-description',
templateUrl: '/static/js/directives/ui/trigger-description/trigger-description.component.html'
})
export class TriggerDescriptionComponent {
@Input('<') public trigger: Trigger;
constructor(@Inject('TriggerService') private triggerService: any,
@Inject('KeyService') private keyService: any) {
}
}