ponepaste/includes/Models/User.php

26 lines
719 B
PHP

<?php
namespace PonePaste\Models;
use Illuminate\Database\Eloquent\Model;
class User extends Model {
protected $table = 'users';
protected $fillable = [
'username', 'password', 'recovery_code_hash', 'date'
];
public function session() {
return $this->hasOne(UserSession::class);
}
public function favourites() {
return $this->belongsToMany(Paste::class, 'user_favourites')->withPivot('f_time')
->whereRaw("((expiry IS NULL) OR ((expiry != 'SELF') AND (expiry > NOW())))");
}
public function pastes() {
return $this->hasMany(Paste::class)
->whereRaw("((expiry IS NULL) OR ((expiry != 'SELF') AND (expiry > NOW())))");
}
}