mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2026-01-19 11:21:26 +00:00
29 lines
720 B
JavaScript
29 lines
720 B
JavaScript
export default class Collections {
|
|
constructor (dataSource) {
|
|
this.dataSource = dataSource
|
|
}
|
|
getFollowersCollection (actorId) {
|
|
return this.dataSource.getFollowersCollection(actorId)
|
|
}
|
|
|
|
getFollowersCollectionPage (actorId) {
|
|
return this.dataSource.getFollowersCollectionPage(actorId)
|
|
}
|
|
|
|
getFollowingCollection (actorId) {
|
|
return this.dataSource.getFollowingCollection(actorId)
|
|
}
|
|
|
|
getFollowingCollectionPage (actorId) {
|
|
return this.dataSource.getFollowingCollectionPage(actorId)
|
|
}
|
|
|
|
getOutboxCollection (actorId) {
|
|
return this.dataSource.getOutboxCollection(actorId)
|
|
}
|
|
|
|
getOutboxCollectionPage (actorId) {
|
|
return this.dataSource.getOutboxCollectionPage(actorId)
|
|
}
|
|
}
|