mirror of
https://github.com/BookStackApp/BookStack.git
synced 2025-07-28 17:02:04 +03:00
Added initial settings interface, Fixes #9.
This commit is contained in:
12
app/Setting.php
Normal file
12
app/Setting.php
Normal file
@ -0,0 +1,12 @@
|
||||
<?php
|
||||
|
||||
namespace Oxbow;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class Setting extends Model
|
||||
{
|
||||
protected $fillable = ['setting_key', 'value'];
|
||||
|
||||
protected $primaryKey = 'setting_key';
|
||||
}
|
Reference in New Issue
Block a user