forked from DebaucheryLibrarian/traxxx
Added rudimentary tags page. Improved social match behavior.
This commit is contained in:
@@ -1,10 +1,12 @@
|
||||
import { get } from '../api';
|
||||
|
||||
function initActorActions(store, _router) {
|
||||
async function fetchActors({ _commit }, actorId) {
|
||||
const networks = await get(`/actors/${actorId || ''}`);
|
||||
async function fetchActors({ _commit }, { actorId, limit = 100 }) {
|
||||
if (actorId) {
|
||||
return get(`/actors/${actorId}`, { limit });
|
||||
}
|
||||
|
||||
return networks;
|
||||
return get('/actors', { limit });
|
||||
}
|
||||
|
||||
async function fetchActorReleases({ _commit }, actorId) {
|
||||
|
||||
Reference in New Issue
Block a user