mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-11-23 19:32:29 +01:00
27 lines
457 B
PHP
27 lines
457 B
PHP
<?php
|
|
|
|
namespace Oxbow;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class PageRevision extends Model
|
|
{
|
|
protected $fillable = ['name', 'html', 'text'];
|
|
|
|
public function createdBy()
|
|
{
|
|
return $this->belongsTo('Oxbow\User', 'created_by');
|
|
}
|
|
|
|
public function page()
|
|
{
|
|
return $this->belongsTo('Oxbow\Page');
|
|
}
|
|
|
|
public function getUrl()
|
|
{
|
|
return $this->page->getUrl() . '/revisions/' . $this->id;
|
|
}
|
|
|
|
}
|