forked from DebaucheryLibrarian/traxxx
Passing matching site to profile scrapers. Allowing scrapers to pass avatar metadata. Added scraper and copyright properties to media. Auto-adding copyright from site or scraper to avatars. Separated Porn Pros from Whale Member.
This commit is contained in:
@@ -43,6 +43,7 @@
|
||||
>
|
||||
<img
|
||||
:src="`/media/${actor.avatar.thumbnail}`"
|
||||
:title="actor.avatar.copyright && `© ${actor.avatar.copyright}`"
|
||||
class="avatar"
|
||||
>
|
||||
</a>
|
||||
|
||||
@@ -12,6 +12,7 @@
|
||||
>
|
||||
<img
|
||||
:src="`/media/${actor.avatar.thumbnail}`"
|
||||
:title="actor.avatar.copyright && `© ${actor.avatar.copyright}`"
|
||||
class="avatar photo"
|
||||
>
|
||||
</a>
|
||||
@@ -26,6 +27,7 @@
|
||||
>
|
||||
<img
|
||||
:src="`/media/${photo.thumbnail}`"
|
||||
:title="photo.copyright && `© ${photo.copyright}`"
|
||||
class="photo"
|
||||
>
|
||||
</a>
|
||||
|
||||
@@ -38,11 +38,13 @@
|
||||
:class="{ expanded }"
|
||||
/>
|
||||
|
||||
<Network
|
||||
v-for="childNetwork in networks"
|
||||
:key="`network-${childNetwork.id}`"
|
||||
:network="childNetwork"
|
||||
/>
|
||||
<div class="networks">
|
||||
<Network
|
||||
v-for="childNetwork in networks"
|
||||
:key="`network-${childNetwork.id}`"
|
||||
:network="childNetwork"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<Network
|
||||
v-if="network.parent"
|
||||
|
||||
@@ -80,6 +80,7 @@ function initActorActions(store, _router) {
|
||||
media {
|
||||
thumbnail
|
||||
path
|
||||
copyright
|
||||
}
|
||||
}
|
||||
photos: actorsPhotos {
|
||||
@@ -88,6 +89,7 @@ function initActorActions(store, _router) {
|
||||
thumbnail
|
||||
path
|
||||
index
|
||||
copyright
|
||||
}
|
||||
}
|
||||
birthCity
|
||||
|
||||
Reference in New Issue
Block a user