- change 'server_date_modified' if licence was modified in Web-Backend (Licence.php touches property)

- oai_datacite.xslt and doi_datacite.xslt: descriptionType of abstract mus be camel case
- npm updates
- composer updates
This commit is contained in:
Arno Kaimbacher 2021-05-27 17:44:01 +02:00
parent 9601389d83
commit 5585b9d04a
8 changed files with 23691 additions and 23615 deletions

View file

@ -10,7 +10,8 @@ class DatasetIdentifier extends Model
protected $guarded = array();
public $timestamps = true;
//See the array called $touches? This is where you put all the relationships you want to get updated_at as soon as this Model is updated
// See the array called $touches? This is where you put all the relationships you want to get
// updated_at as soon as this Model is updated
protected $touches = ['dataset'];
/**

View file

@ -23,6 +23,10 @@ class License extends Model
'pod_allowed'
];
// See the array called $touches? This is where you put all the relationships you want to get
// updated_at as soon as this Model is updated
protected $touches = ['datasets'];
public function datasets()
{
return $this->belongsToMany(Dataset::class, 'link_documents_licences', 'licence_id', 'document_id');