mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-22 06:21:27 +00:00
Update ImportJob model
This commit is contained in:
parent
dd134ba5e3
commit
964066da44
1 changed files with 5 additions and 0 deletions
|
@ -6,6 +6,11 @@ use Illuminate\Database\Eloquent\Model;
|
||||||
|
|
||||||
class ImportJob extends Model
|
class ImportJob extends Model
|
||||||
{
|
{
|
||||||
|
public function profile()
|
||||||
|
{
|
||||||
|
return $this->belongsTo(Profile::class, 'profile_id');
|
||||||
|
}
|
||||||
|
|
||||||
public function url()
|
public function url()
|
||||||
{
|
{
|
||||||
return url("/i/import/job/{$this->uuid}/{$this->stage}");
|
return url("/i/import/job/{$this->uuid}/{$this->stage}");
|
||||||
|
|
Loading…
Reference in a new issue