]> BookStack Code Mirror - bookstack/blob - app/Settings/Setting.php
Replace dots with something else on user create and edit screens
[bookstack] / app / Settings / Setting.php
1 <?php namespace BookStack\Settings;
2
3 use BookStack\Model;
4
5 class Setting extends Model
6 {
7     protected $fillable = ['setting_key', 'value'];
8
9     protected $primaryKey = 'setting_key';
10 }