1
0
mirror of https://github.com/devfake/flox.git synced 2024-11-15 22:52:32 +01:00
flox/backend/app/Setting.php
Viktor Geringer 1f1967c2b3
Show ratings optionally (#98)
* show ratings optionally

* update production files
2017-11-05 17:06:27 +01:00

23 lines
408 B
PHP

<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Setting extends Model {
public $timestamps = false;
protected $dates = [
'last_fetch_to_file_parser',
];
protected $fillable = [
'show_date',
'show_genre',
'episode_spoiler_protection',
'last_fetch_to_file_parser',
'show_watchlist_everywhere',
'show_ratings',
];
}