1
0
Fork 1
mirror of https://github.com/pixelfed/pixelfed.git synced 2024-12-23 00:05:29 +00:00
pixelfed/app/Services/BookmarkService.php
2022-01-27 05:17:55 -07:00

16 lines
388 B
PHP

<?php
namespace App\Services;
use App\Bookmark;
use Illuminate\Support\Facades\Cache;
class BookmarkService
{
public static function get($profileId, $statusId)
{
// return Cache::remember('pf:bookmarks:' . $profileId . ':' . $statusId, 84600, function() use($profileId, $statusId) {
return Bookmark::whereProfileId($profileId)->whereStatusId($statusId)->exists();
// });
}
}