2018-04-21 17:20:09 +02:00
|
|
|
import {Component, Input} from '@angular/core';
|
2017-12-19 13:53:46 +01:00
|
|
|
|
|
|
|
@Component({
|
|
|
|
selector: 'deposit-publications-result',
|
|
|
|
template: `
|
2018-04-21 17:20:09 +02:00
|
|
|
<deposit-result [compatibility]="'openaire____::47ce9e9f4fad46e732cff06419ecaabb||OpenDOAR'" [requestFor]="'Publications'" [piwikSiteId]=piwikSiteId></deposit-result>
|
2017-12-19 13:53:46 +01:00
|
|
|
`
|
|
|
|
})
|
|
|
|
|
|
|
|
export class DepositPublicationsResultComponent {
|
2018-04-21 17:20:09 +02:00
|
|
|
@Input() piwikSiteId = null;
|
2017-12-19 13:53:46 +01:00
|
|
|
}
|